adds nice welcome log to show where you are logged in on

This commit is contained in:
2024-11-03 22:11:30 +01:00
parent 58866ea8f8
commit ec468d6221

View File

@ -2,4 +2,19 @@
source $HOME/dotfiles/bin/helpers/functions.sh
welcome() {
echo
tput setaf 6
printf "You're logged in on ["
printf $HOSTNAME | lolcat
tput setaf 6
printf "] as "
printf "["
printf $USER | lolcat
tput setaf 6
printf "]\n"
tput sgr0
}
logo continue
welcome