class RemindMeTo::Notifier::LibnotifyNotifier
Public Instance Methods
notify(message, opts = {})
click to toggle source
# File lib/remindmeto/notifier/libnotify_notifier.rb, line 6 def notify(message, opts = {}) title = 'RemindMeTo' Libnotify.show :body => message, :summary => opts[:header] end