Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Effitask | 210 | 3 months ago | 25 | mit | Rust | |||||
Graphical task manager, based on the todo.txt format. | ||||||||||
Todo.txt Gtd | 15 | 3 months ago | 2 | February 10, 2019 | 2 | gpl-2.0 | Python | |||
My recipe for customizing todo.txt for Getting Things Done | ||||||||||
Makagiga | 8 | 9 years ago | ||||||||
To-do manager, notepad, RSS reader... | ||||||||||
Chronofag Timer | 6 | 6 years ago | other | C# | ||||||
🍅 Automated Productivity Timer (GTD) for Windows | ||||||||||
Intention Tower Knowledge Graph | 3 | 2 months ago | 11 | mit | CSS | |||||
ITKG is a knowledge and task management framework for tiddlywiki. | ||||||||||
Atiop | 2 | 4 days ago | 1 | mit | Vue | |||||
ATIOP - сервис управления задачами. Версия 2.0 | ||||||||||
Duet | 2 | 6 years ago | 2 | Java | ||||||
Duet is a task-manager for Android based on the GTD suite | ||||||||||
Calmwater | 2 | 3 months ago | agpl-3.0 | Crystal | ||||||
calmwater: A fast, nimble, disciplined, web-based Getting Things Done tool that holds you to account. Supports projects, next actions, queued next actions, and textual project support material. Stop keeping your whole life--work & home--jammed in your head. | ||||||||||
Calmwater1 | 2 | a year ago | n,ull | gpl-3.0 | Ruby | |||||
A fast, command-line, GTD tool that holds you to account. | ||||||||||
Gtd V2 | 1 | 5 years ago | gpl-3.0 | JavaScript | ||||||
A single page todo manager |
Effitask is a graphical task manager, based on the todo.txt format.
Supported toto.txt addons:
I tried to develop a clear interface without surprises, but you can easily miss some feature:
+work\admin\automation
create this arborescence:work
admin
automation
If you use Arch Linux, effitask is available in AUR.
Compiling effitask requires rust. I recommend to use rustup.
You also need gtk+ 3.0
on your system. Depending of your distribution, run:
apt install libgtk-3-dev # debian
pacman -S gtk3 # archlinux
dnf install gtk3 gtk3-devel #fedora
git clone https://github.com/sanpii/effitask
cd effitask
make
sudo make install
This program is designed to be used as todo.sh add-on. Install it as others add-ons: https://github.com/todotxt/todo.txt-cli/wiki/Creating-and-Installing-Add-ons.
mkdir ~/.todo.actions.d
ln -s /usr/bin/effitask ~/.todo.actions.d/et
todo.sh et
You can use it as standalone program by defining some environment variables:
export TODO_DIR="$HOME/.local/opt/share/todo"
export TODO_FILE="$TODO_DIR/todo.txt"
export DONE_FILE="$TODO_DIR/done.txt"
/usr/bin/effitask
As you can see above, effitask reuse todo.txt environment variables for configuration.
TODO_DIR
: your todo.txt directoryTODO_FILE
: your todo.txt locationDONE_FILE
: your done.txt locationTODO_NOTES_DIR
: directory for notes, $TODO_DIR/notes
by defaultTODO_NOTE_EXT
: extension for note files, .txt
by defaultTODO_NOTE_TAG
: tag name to add to task description, note
by default