Skip to content

Instantly share code, notes, and snippets.

@traumverloren
Last active March 16, 2018 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save traumverloren/8c1e72429414328a187b285b96297722 to your computer and use it in GitHub Desktop.
Save traumverloren/8c1e72429414328a187b285b96297722 to your computer and use it in GitHub Desktop.
custom-terminal-greetings

Something cheery and motivating for your terminal ʕᵔᴥᵔʔ

Add this to your .zshrc or .bash_profile:

# Nice Greetings
niceThings=('you look lovely today' 'you are so smart' 'I think you are fantastic' 'You are super creative' 'You can do anything' 'You write KICKASS code' 'Your hair looks amazing today' 'You inspire soooo many people' 'You are a strong powerful woman');

emojis=('ʕᵔᴥᵔʔ' '(。◕‿◕。)' '( ˘ ³˘)♥' 'ฅ^•ﻌ•^ฅ' '(づ ̄ ³ ̄)づ' '┌(ㆆ㉨ㆆ)ʃ' '“ヽ(´▽`)ノ”' '♥‿♥' 'ᕕ( ᐛ )ᕗ' '(ᵔᴥᵔ)')

index=$(( RANDOM % ${#niceThings[@]} ))
echo ${emojis[${index}]} ${niceThings[${index}]}

@scarroll32
Copy link

awesome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment