# File lib/guard/notifiers/libnotify.rb, line 64
      def notify(type, title, message, image, options = { })
        require 'libnotify'

        ::Libnotify.show(DEFAULTS.merge(options).merge({
          :urgency   => libnotify_urgency(type),
          :summary   => title,
          :body      => message,
          :icon_path => image
        }))
      end