https://github.com/chicks-net/dot-slash-dash
ascii-art dashboard
https://github.com/chicks-net/dot-slash-dash
console-application dashboard
Last synced: 2 months ago
JSON representation
ascii-art dashboard
- Host: GitHub
- URL: https://github.com/chicks-net/dot-slash-dash
- Owner: chicks-net
- License: gpl-2.0
- Created: 2018-09-27T21:12:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-04T02:50:17.000Z (over 6 years ago)
- Last Synced: 2025-01-25T20:44:04.696Z (4 months ago)
- Topics: console-application, dashboard
- Language: Perl
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dot-slash-dash
[](https://github.com/ellerbrock/open-source-badges/)
[](https://github.com/chicks-net/dot-slash-dash/blob/master/LICENSE)
[](https://github.com/chicks-net/dot-slash-dash/graphs/commit-activity)ascii-art dashboard
## example
TODO after more development...
## usage and configuration
Run
```
./dash
```to see it go.
### layout
The `dash_lay.txt` is like a mini-spreadsheet. If you have a layout like this:
| A | B | C |
| :-- | :-- | :-- |
| `A1` | `B1` | `C1` |
| | `B2` | `C2` |
| | | `C3` |You have
* 3 columns `A` through `C`
* 3 rows `1` through `3`
* one column has one row, another has two, and the last has all threeYou can
* have 1-n rows in each column
* up to 26 columns `A` through `Z`Here is an [example `dash_lay.txt`](dash_lay_readme.txt) for the above layout:
```
A1: users
B1: weather work
B2: weather home
C1: todo.todo
C2: todo.done
C3: todo.touched_today
```### content modules
Existing content modules are defined in [`dash_cells/`](dash_cells/). Currently we have:
* `users` shows the currently logged in users
* `time_now` shows the current time in the local time zone
* `time_utc` shows the current itme in UTCNew cells can be created by adding configuration files in [`dash_cells/`](dash_cells/).