# File lib/guard/notifiers/notifysend.rb, line 47
      def notify(type, title, message, image, options = { })
        command = "notify-send '#{title}' '#{message}'"
        system(to_command_string(command, SUPPORTED, DEFAULTS.merge(options).merge({
          :u => notifysend_urgency(type),
          :i => image
        })))
      end