]> git.rmz.io Git - dotfiles.git/commitdiff
zsh/motd: check for correct org folder
authorSamir Benmendil <me@rmz.io>
Sun, 11 Oct 2020 14:30:46 +0000 (15:30 +0100)
committerSamir Benmendil <me@rmz.io>
Sun, 11 Oct 2020 14:30:46 +0000 (15:30 +0100)
Oops.

zsh/lib/motd.zsh

index 5e71d1cee9e22600ff84eae11a372814cadd4dc7..a1fd32b80c73e647320827a08d8751ac3ea5eca3 100644 (file)
@@ -10,7 +10,7 @@ msg()
   print "$fg_bold[white]$1$reset_color\n$2\n"
 }
 
-if [[ -d ~/.org ]]; then
+if [[ -d ~/org ]]; then
     # 44 seems to be the number of color escape characters used by grep
     todo | cut -c-$((COLUMNS + 44))
 fi