Created
May 25, 2021 14:53
-
-
Save themarcba/6030cefd294ae878f8f3517082c69df4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ "$*" == "whiskey" || "$*" == "whiskey wednesday" ]]; then | |
MESSAGE="Whiskey and coding, what can go wrong? Cheers! π" | |
PREFIX='π₯' | |
elif [[ "$*" == "beer" || "$*" == "happy hour" ]]; then | |
MESSAGE='Cheers π»' | |
PREFIX='πΊ' | |
elif [[ "$*" == "frontend" || "$*" == "fe" ]]; then | |
MESSAGE='' | |
PREFIX='π¨' | |
elif [[ "$*" == "backend" || "$*" == "be" ]]; then | |
MESSAGE='' | |
PREFIX='π' | |
elif [[ "$*" == "deno" || "$*" == "dino" ]]; then | |
MESSAGE='' | |
PREFIX='π¦' | |
elif [[ "$*" == "party" ]]; then | |
MESSAGE="It's party time π₯³" | |
PREFIX='π' | |
elif [[ "$*" == "prod" ]]; then | |
MESSAGE="Production time! Keep your head cool, you got this πͺ" | |
PREFIX='π₯' | |
elif [[ "$*" == "fire" ]]; then | |
MESSAGE="Uh oh! What happened?" | |
PREFIX='π₯' | |
elif [[ "$*" == "fuck" ]]; then | |
MESSAGE="WHAT THE FUCK?!" | |
PREFIX='π€¬' | |
elif [[ "$*" == "friday" ]]; then | |
MESSAGE="Wohoo, it's Friday! Don't mess it up by deploying something." | |
PREFIX='π' | |
else | |
MESSAGE="" | |
PREFIX='' | |
fi | |
export SPACESHIP_CHAR_PREFIX="$PREFIX " | |
clear | |
if [[ "$MESSAGE" != "" ]]; then | |
echo $MESSAGE | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment