Skip to content

Instantly share code, notes, and snippets.

@gautamk
Created March 17, 2012 12:17
Show Gist options
  • Save gautamk/2058245 to your computer and use it in GitHub Desktop.
Save gautamk/2058245 to your computer and use it in GitHub Desktop.
Script to display an alert message once downloads complete
#!/bin/bash
#
# Script to display an alert message once downloads complete
# Takes the same parameters as wget
#
wget $@
wait
zenity --info --text="Download Complete"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment