lib/bolt/notifier.rb in marcinbunsch-bolt-0.2.3 vs lib/bolt/notifier.rb in marcinbunsch-bolt-0.2.4
- old
+ new
@@ -10,11 +10,11 @@
# Constructor
def initialize
# find appropriate notifier
notifier
# present
- $stdout.puts "** Using #{notifier.class} \n"
+ $stdout.puts "** Using #{notifier.class} \n" if Bolt['verbose']
end
# Pick a listener to launch
def notifier
return selected if selected
@@ -22,14 +22,14 @@
if Bolt['notifier'] and ['generic', 'growl'].include?(Bolt['notifier'])
self.selected= Bolt::Notifiers::Growl.new if Bolt['notifier'] == 'growl'
self.selected= Bolt::Notifiers::Generic.new if Bolt['notifier'] == 'generic'
self.selected= Bolt::Notifiers::NotifyOsd.new if Bolt['notifier'] == 'notify_send'
- $stdout.puts "** Found 'notifier' setting in .bolt"
+ $stdout.puts "** Found 'notifier' setting in .bolt" if Bolt['verbose']
return self.selected
end
- $stdout.puts "** Determining notifier... \n"
+ $stdout.puts "** Determining notifier... \n" if Bolt['verbose']
# default - growl (if growlnotify is present)
output = %x[which growlnotify]
if !Bolt['notifier'] and output.to_s.include?('/growlnotify')
self.selected= Bolt::Notifiers::Growl.new(:use_growlnotify => true)