class Travis::Tools::Notification::LibNotify

def available?

def available?
  System.has? 'notify-send'
end

def notify(title, body)

def notify(title, body)
  system 'notify-send', '--expire-time=10000', '-h', 'int:transient:1', '-i', ICON, title, CGI.escapeHTML(body)
end