Skip to content

Instantly share code, notes, and snippets.

@timogoebel
Forked from danslimmon/consoleation.sh
Created May 23, 2014 12:56
Show Gist options
  • Save timogoebel/632a309b9a85e5172d3d to your computer and use it in GitHub Desktop.
Save timogoebel/632a309b9a85e5172d3d to your computer and use it in GitHub Desktop.
# Says something comforting
function comfort() {
messages[0]="I hear you."
messages[1]="I'm sorry. That's a bummer."
messages[2]="That blows."
messages[3]="Ouch. Okay, let's take a deep breath together."
messages[4]="Damn. Sounds like you're having a rough day."
messages[5]="Hey, we'll get through this together."
messages[6]="Aw man."
ind=$[$RANDOM % ${#messages[@]}]
echo ${messages[$ind]}
}
alias fuck=comfort
alias fuuck=comfort
alias fuuuck=comfort
alias fuuuuck=comfort
alias fml=comfort
alias shit=comfort
alias goddammit=comfort
alias ugh=comfort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment