Skip to content

Instantly share code, notes, and snippets.

@bjford
Created January 18, 2022 20:03
Show Gist options
  • Save bjford/612c41e3912ec1d971f5867f024139e6 to your computer and use it in GitHub Desktop.
Save bjford/612c41e3912ec1d971f5867f024139e6 to your computer and use it in GitHub Desktop.
Start your working day with a fortune cookie
# Add the following at the end of your .zshrc file
echo "Welcome back and HAPPY CODING!" | lolcat
ARRAYISO=("@" "0" "o" "O" "x" "X" "." "-" "*" "6" "C" "c" "^" "~")
random_char=${ARRAYISO[RANDOM % ${#ARRAYISO[@]} + 1]}
fortune | cowthink -e "${random_char}${random_char}" -f moose | lolcat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment