2f94f9e22f
Only print notification "Install message" once Added GUARD_NOTIFY=false env variable support Fixes #28
13 lines
158 B
Ruby
13 lines
158 B
Ruby
def growl_installed?
|
|
require 'growl'
|
|
true
|
|
rescue LoadError
|
|
false
|
|
end
|
|
|
|
def libnotify_installed?
|
|
require 'libnotify'
|
|
true
|
|
rescue LoadError
|
|
false
|
|
end |