# File lib/guard/notifiers/tmux.rb, line 148
      def turn_off(options = { })
        if @options_stored
          @options_store.each do |key, value|
            if value
              run_client "set #{ key } #{ value }"
            else
              run_client "set -u #{ key }"
            end
          end

          reset_options_store
        end

        run_client 'set quiet off'
      end