return $1
}
+# Execute all periodic functions every hour.
+PERIOD=3600
+# Display TODOs stored in ~/.todo if this file exists. Run every hour to make
+# clear they should be completed ;-).
+todo() {
+ if [[ -f ~/.todo ]]; then
+ cat ~/.todo | $PAGER
+ fi
+}
+add-zsh-hook periodic todo
+
# Simplify calls to less, automatically redirects all output.
alias -g L='2>&1 | less'
# Simplify calls to colordiff, output is also piped through less.