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

        ::Notifu.show(DEFAULTS.merge(options).merge({
          :type    => notifu_type(type),
          :title   => title,
          :message => message
        }))
      end