Sha256: 30b7c0e6220b897a9679b400d0253d8afc839ce311e23f8691164b43613707a4
Contents?: true
Size: 1.26 KB
Versions: 26
Compression:
Stored size: 1.26 KB
Contents
module Notiffany class Notifier class Tmux < Base # Preserves TMux settings for all tmux sessions class Session def initialize @options_store = {} # NOTE: we are reading the settings of all clients # - regardless of the :display_on_all_clients option # Ideally, this should be done incrementally (e.g. if we start with # "current" client and then override the :display_on_all_clients to # true, only then the option store should be updated to contain # settings of all clients Client.new(:all).clients.each do |client| @options_store[client] = { "status-left-bg" => nil, "status-right-bg" => nil, "status-left-fg" => nil, "status-right-fg" => nil, "message-bg" => nil, "message-fg" => nil, "display-time" => nil }.merge(Client.new(client).parse_options) end end def close @options_store.each do |client, options| options.each do |key, value| Client.new(client).unset(key, value) end end @options_store = nil end end end end end
Version data entries
26 entries across 26 versions & 8 rubygems