Tom Willemsen
0dbfba6a4d
Mod4-t: start an emacs instance to capture a new todo item Mod4-Shift-t: Show todo list
5 lines
143 B
Bash
Executable file
5 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
|
|
grep --color=never "* \(TODO\|IN PROGRESS\|WAITING\)" org/notes.org \
|
|
| sed 's/\*/ /g' \
|
|
| xmessage -file - -default okay
|