6 lines
143 B
Text
6 lines
143 B
Text
|
#!/bin/bash
|
||
|
|
||
|
grep --color=never "* \(TODO\|IN PROGRESS\|WAITING\)" org/notes.org \
|
||
|
| sed 's/\*/ /g' \
|
||
|
| xmessage -file - -default okay
|