Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/st3iny/boards
A simple task and note app for the command line written in Go.
https://github.com/st3iny/boards
command-line notes tasks todo
Last synced: about 1 month ago
JSON representation
A simple task and note app for the command line written in Go.
- Host: GitHub
- URL: https://github.com/st3iny/boards
- Owner: st3iny
- License: mit
- Created: 2020-07-13T09:50:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-09T13:45:42.000Z (over 2 years ago)
- Last Synced: 2024-11-07T08:18:30.471Z (3 months ago)
- Topics: command-line, notes, tasks, todo
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# boards
A simple task and note app for the command line written in Go.## Usage
```
boards
boards task|t [@BOARD ...] DESCRIPTION [DESCRIPTION ...]
boards note|n [@BOARD ...] DESCRIPTION [DESCRIPTION ...]
boards delete|d ID [ID ...]
boards complete|c ID [ID ...]
boards uncomplete|u ID [ID ...]
boards edit|e ID DESCRIPTION [DESCRIPTION ...]
boards boards|b ID [ID ...] [@BOARD ...]
boards mark|m ID [ID ...]
boards clear
boards --help|-hIf boards is run without any argument all tasks will be printed grouped by their boards.
Clear will remove all complete tasks.
```The tasks will be stored in `$XDG_CONFIG_HOME/boards/storage.json` (defaults to `~/.config/boards/storage.json`).
## Build
Run `make` to build `boards` binary.Run `make install` to install the binary to `/usr/local/bin`. A custom install directory can be set via the `INSTALL_DIR` environment variable.