blob: 9e256dacff3011ebb1cf266b8c20e1a45429eafe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env zsh
[[ -n $commands[todo] ]] && [[ -r ~/var/gtd/todo ]] && \
todo --database /home/derf/var/gtd/todo
[[ -n $commands[todo] ]] && [[ -r ~/var/gtd/waiting ]] && \
todo --database ~/var/gtd/waiting | fgrep "$(cat /tmp/.location)"
[[ -n $commands[calendar] ]] && [[ -r ~/stuff/calendar ]] && calendar
ct pull
true
|