It is a simple script to create and manage your todo list.
To install ttodo you can edit the Makefile to match your local setup (ttodo is installed into the /usr/local/bin by default).
Afterwards enter the following command to install ttodo (if necessary as root).
sudo make installTo uninstall ttodo, just run:
sudo make uninstall
ttodo can create a todo activity, mark them as done or undo them if you want.
We can do that by using the options listed bellow:
-a,--add<name>: adds a new todo with the title received as argument;-d,--do<name>: marks the todo activity as done;-u,--undo<namw>: makes a done activity as todo;-lt,--listtodo: lists todo activities;-ld,--listdone: lists done activities;-h,--help: show the usage message.
The default folder where the todo and done activities are stored is ~/.ttodo/.
- To
adda todo:
$ ttodo --add "This is a Test"
Added This is a Test- To
listthe todo activities registered:
$ ttodo --listtodo
This is a Test- To mark a todo activity as
done:
$ ttodo --do "This is a Test"
This is a Test marked as done!- To
listthe done activities registered:
$ ttodo --listdone
This is a Test- If you want to
undoadoneactivity:
$ ttodo --undo "This is a Test"
This is a Test marked as undone!
$ ttodo --listtodo
This is a TestAnd that's it!
![]() |
![]() |
|---|---|
| Edimar Calebe Castanho (Calebe94) | Gabriel Gaboardi (Gabo) |
All software is covered under GNU General Public License v3.0.

