# File lib/guard/notifiers/emacs.rb, line 51
      def notify(type, title, message, image, options = { })
        options   = DEFAULTS.merge options
        color     = emacs_color type, options
        fontcolor = emacs_color :fontcolor, options
        system(%(#{ options[:client] } --eval "(set-face-attribute 'mode-line nil :background \\"#{ color }\\" :foreground \\"#{ fontcolor }\\")"))
      end