Skip to content

Instantly share code, notes, and snippets.

@nalipaz
Created September 30, 2014 07:00
Show Gist options
  • Save nalipaz/91b628bec34fe80cd9ca to your computer and use it in GitHub Desktop.
Save nalipaz/91b628bec34fe80cd9ca to your computer and use it in GitHub Desktop.
alias ll='ls -la'
soundfile="/home/nalipaz/Music/Sound Effects/smb_stage_clear.wav"
function scp() {
/usr/bin/scp "$@" && /usr/bin/aplay "$soundfile"
}
function mysqldump() {
/usr/bin/mysqldump "$@" && /usr/bin/aplay "$soundfile"
}
function drush() {
case "$1" in
sql-sync | sql-dump)
/usr/bin/drush "$@"
(/usr/bin/aplay "$soundfile" -q &) &> /dev/null
;;
*)
/usr/bin/drush "$@"
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment