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