updated weird custom-executable requirement

This commit is contained in:
Wryn Wagner
2021-06-28 11:45:52 -06:00
parent 72f277bd69
commit 2b638a11df
2 changed files with 4 additions and 4 deletions

6
zsh/rc
View File

@ -43,7 +43,7 @@ for PLUGIN in $EXTERNAL_PLUGIN_LIST; do
done
# --- welcome message ----------------------------------------------
CUSTOM_WELCOME="$HOME/.config/wryn/custom-welcome"
CUSTOM_WELCOME="$HOME/.config/wryn/welcome"
[ -f "$CUSTOM_WELCOME" ] \
&& { "$CUSTOM_WELCOME" } \
|| { exec figlet "Welcome, beautiful" | lolcat; echo; cowsay -p "damn u sexy" | lolcat; }
&& { source "$CUSTOM_WELCOME" } \
|| { { figlet 'Welcome, beautiful'; cowsay -p 'damn u sexy' } | lolcat; }