Skip to content

Instantly share code, notes, and snippets.

@saivenkat
Created July 13, 2009 18:07
Show Gist options
  • Select an option

  • Save saivenkat/146344 to your computer and use it in GitHub Desktop.

Select an option

Save saivenkat/146344 to your computer and use it in GitHub Desktop.
Notifications in linux
#install libnotify-bin for this to work. Do a apt-get install libnotify-bin
def notify(title, message, urgency = 'normal')
command = "notify-send -u #{urgency} '#{title}' '#{message}'"
system command
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment