Tiny scripts to improve your productivity.
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 install
To 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/
.
add
a todo:$ ttodo --add "This is a Test"
Added This is a Test
list
the todo activities registered:$ ttodo --listtodo
This is a Test
done
:$ ttodo --do "This is a Test"
This is a Test marked as done!
list
the done activities registered:$ ttodo --listdone
This is a Test
undo
a done
activity:$ ttodo --undo "This is a Test"
This is a Test marked as undone!
$ ttodo --listtodo
This is a Test
And that’s it!
Edimar Calebe Castanho (Calebe94) | Gabriel Gaboardi (Gabo) |
All software is covered under GNU General Public License v3.0.