Added customizable welcome and ps1

This commit is contained in:
Wryn Wagner
2020-12-02 19:14:36 +00:00
parent 5adc909b24
commit e87a6245a0
2 changed files with 8 additions and 3 deletions

5
zsh/rc
View File

@ -37,4 +37,7 @@ SET_PREFERRED_EDITOR
# --- welcome message ----------------------------------------------
exec figlet "Welcome, beautiful" | lolcat; echo; cowsay -p "damn u sexy" | lolcat;
CUSTOM_WELCOME="$HOME/.config/wryn/custom-welcome"
[ -f "$CUSTOM_WELCOME" ] \
&& { "$CUSTOM_WELCOME" } \
|| { exec figlet "Welcome, beautiful" | lolcat; echo; cowsay -p "damn u sexy" | lolcat; }