Module: Notifier::NotifySend
Instance Method Summary collapse
Instance Method Details
#notify(options) ⇒ Object
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/notifier/notify_send.rb', line 13 def notify() command = [ "notify-send", "-i", [:image].to_s, [:title].to_s, [:message].to_s ] Thread.new { system(*command) }.join end |
#supported? ⇒ Boolean
7 8 9 10 11 |
# File 'lib/notifier/notify_send.rb', line 7 def supported? Notifier.os?(/(linux|freebsd)/) && `which notify-send > /dev/null` && $CHILD_STATUS == 0 end |