Check out the latest javascript, tech and web development links from the daily linkblog.
The dead simple todos system
productivity programming bash linuxOver the years I’ve tried a variety of sofware solutions to todo lists but I always find that eventually I end up just opening a empty file and typing a text list. It’s just so straight forward. Almost as if writing a list in a notebook, which of course is the ultimate todo list solution.
Anyhow I’ve been adding quite a lot of aliases to my dotfiles recently and I wondered if I could add just a few that would make the bare essentials of a todo list system. These are the aliases that I came up with:
It’s all very standard shell scripting, the aliases get loaded from .bash_aliases
or similar. The only complicated one is tdn
which only creates the new todos file if one doesn’t already exist for the current day to avoid accidentally overwritting an existing list.
- slugd - create slug using date
- todos - fast navigation to $TODO_DIR
- tdf - (file) prints latest existing todo file path
- tdt - (today) prints file path using todays date
- tde - (edit) opens latest todo file in editor
- tdd - (date) prints todays date nicely formated
- tda - (all) prints all todos from latest todo file
- tdc - (complete) prints all completed todos from latest todo file
- tdi - (incomplete) prints all incomplete todos from latest todo file
- tdn - (new) new todo file extracting all incomplete from previous
In practive the only aliases you actually use are tdn
, tda
and tde
.
That’s it just 3 aliases to remember and it’s pretty close to using a notebook. The only configuration necessary is to set TODOS_DIR
environment variable somewhere that gets loaded by the shell automically like your shell’s .bashrc
file.
Here is what a todo list file looks like:
The real test of course is tomorrow morning when I create a new todo list.
If you liked this post you might find my daily linkblog interesting, and there's also a weekly newsletter.
For enquiries about my consulting, development, training and writing services, aswell as sponsorship opportunities contact me directly via email. More details about me here.
subscribe via RSS