]> git.rmz.io Git - dotfiles.git/blob - zsh/lib/motd.zsh
1c6e9e4349ef31ac018dc4c8321b0ac854cab493
[dotfiles.git] / zsh / lib / motd.zsh
1 autoload colors; colors;
2
3 short()
4 {
5 print "$fg_bold[white]$1$reset_color $2"
6 }
7
8 msg()
9 {
10 print "$fg_bold[white]$1$reset_color\n$2\n"
11 }
12
13 # 44 seems to be the number of color escape characters used by grep
14 grep "* TODO" org/* --color=always | cut -c-$((COLUMNS + 44))