Skip to content

Instantly share code, notes, and snippets.

@ato
Created October 27, 2009 22:58
Show Gist options
  • Save ato/220046 to your computer and use it in GitHub Desktop.
Save ato/220046 to your computer and use it in GitHub Desktop.
# wget with notifications!
function wget() {
command wget "$@"
ret=$?
notify-send -i $HOME/.icons/down.svg "Download complete" "wget $*" &> /dev/null
return $ret
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment