class Guard::Notifier

def self.toggle

def self.toggle
  unless @notifier.enabled?
    UI.error NOTIFICATIONS_DISABLED
    return
  end
  if @notifier.active?
    UI.info "Turn off notifications"
    @notifier.turn_off
    return
  end
  @notifier.turn_on
end