dotfiles/bin/actions/hello.sh
Menno van Leeuwen f3e07bad16
All checks were successful
Nix Format Check / check-format (push) Successful in 38s
rename dotf term to dotf hello
2024-12-30 13:47:26 +01:00

21 lines
300 B
Bash
Executable File

#!/usr/bin/env bash
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