todoTUI is a minimalistic to-do list app written in Python and relies on curses.
The movement is based on keyboard, where the user can add, finish and remove tasks.
The user can also scroll through different pages of tasks (in case there are more tasks that the terminal can display).
Specify todoTasks.csv file path inside helpers.py
E.g:
/home/(user)/(script-directory)/todoTUI/todo/todoTasks.csv
Create alias to run program (inside of ~/.bashrc):
alias todo='python3 /home/(user)/scripts/todoTUI/todo/main.py'
Update ~/.bashrc
source ~/.bashrc
- h (--help) Help menu
- a Add tasks
- l List tasks
todo
todo -a "Your task goes here"
todo --help
todo -l
- Arrow Up: Scroll up
- Arrow Down: Scroll down
- f: Finish task
- r: Remove task