Skip to content

Instantly share code, notes, and snippets.

@mokevnin
Created October 13, 2010 09:11
Show Gist options
  • Save mokevnin/623726 to your computer and use it in GitHub Desktop.
Save mokevnin/623726 to your computer and use it in GitHub Desktop.
.caprc
# gem install capistrano_colors
# aptitude install libnotify-bin
def notify(message, body, urgency, icon = :info)
system("notify-send --urgency=#{urgency} --icon=#{icon} '#{message}' '#{body}'")
end
on :exit do
notify('Capistrano Task: Finished', ARGV.join(' '), :low)
end
require 'capistrano_colors'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment