Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcos-venicius/daily-term
A terminal UI to manage daily tasks using vim motions
https://github.com/marcos-venicius/daily-term
go golang goroutine task-manager termbox termbox-go terminal terminal-app vim vim-motions
Last synced: 3 months ago
JSON representation
A terminal UI to manage daily tasks using vim motions
- Host: GitHub
- URL: https://github.com/marcos-venicius/daily-term
- Owner: marcos-venicius
- License: mit
- Created: 2024-08-01T22:30:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T14:19:10.000Z (5 months ago)
- Last Synced: 2024-09-28T15:21:13.245Z (3 months ago)
- Topics: go, golang, goroutine, task-manager, termbox, termbox-go, terminal, terminal-app, vim, vim-motions
- Language: Go
- Homepage:
- Size: 69.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Daily Term
Manage your daily tasks using your terminal with **vim motions**
https://github.com/user-attachments/assets/f5884bdf-b8e4-49df-b335-54aeab1ccd5e
## Install
```bash
go install github.com/marcos-venicius/daily-term@latest
```## Modes
- `NORMAL`
- `COMMAND`
- `DELETE`## NORMAL mode keybindings
- q quit
- : enter `COMMAND` mode
- k previous task
- j next task
- d enter `DELETE` mode
- t move task to state `Todo`
- i move task to state `In Progress`
- c move task to state `Completed`
- Esc clear error## DELETE mode keybindings
- d delete current selected task
- Esc cancel `DELETE` mode## COMMAND mode commands
- `q` `quit` quit
- `nt ""` `new task ""` create a new task
- `dt` `delete task` delete current selected task
- `dt ` `delete task ` delete task by id
- Esc cancel `COMMAND` mode