Module: Notifier::NotifySend

Extended by:
NotifySend
Included in:
NotifySend
Defined in:
lib/notifier/notify_send.rb

Instance Method Summary collapse

Instance Method Details

#notify(options) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/notifier/notify_send.rb', line 9

def notify(options)
  command = [
    "notify-send", "-i",
    options[:image].to_s,
    options[:title].to_s,
    options[:message].to_s
  ]

  Thread.new { system(*command) }.join
end

#supported?Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/notifier/notify_send.rb', line 5

def supported?
  Notifier.os?(/(linux|freebsd)/) && `which notify-send > /dev/null` && $? == 0
end