diff options
-rw-r--r-- | shell/_zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/_zshrc b/shell/_zshrc index 8bddcf6..eb61903 100644 --- a/shell/_zshrc +++ b/shell/_zshrc @@ -170,6 +170,6 @@ if type "archey" > /dev/null; then archey # nice system information and arch logo fi -if [ -e "~/TODO" ]; then - cat ~/TODO +if [ -e "$HOME/TODO" ]; then + cat "$HOME/TODO" fi |