A simple task prioritizer based on topological sort algorithm. Here how it works:
- Dump your tasks to a text file, for example
personal_tasks.txt
- Execute
tksort personal_tasks.txt
, the application now asks you for the priority of each pair of tasks. - Answer the questions with
1
or2
or anything else if you're not sure about it. - Once all done,
personal_tasks.txt
will be updated with the prioritized task list.
Build prerequisites:
CMake >= 3.12
make
./install.sh
It builds the application and then copy the binary to /usr/local/bin/
which will require sudo privilege.