diff options
author | Ben Sima <ben@bsima.me> | 2018-11-09 13:52:16 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-11-09 13:52:16 -0800 |
commit | 8912be767eaf1fdf7926f76112c1d6ef9855469d (patch) | |
tree | 7585f45cb2d240fdc98013ca32ae1600b77168de /tmux | |
parent | fa47b22aa64c86dc369fdc0cbb60e90eaeca1e75 (diff) |
Disable tmux colors (for now)
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux | 36 |
1 files changed, 19 insertions, 17 deletions
@@ -69,38 +69,40 @@ bind r source-file ~/.tmux.conf # based on: https://github.com/seebi/tmux-colors-solarized/ # default statusbar colors -set-option -g status-bg white #base2 -set-option -g status-fg yellow #yellow -set-option -g status-attr default +#set-option -g status-bg white #base2 +#set-option -g status-fg yellow #yellow +#set-option -g status-attr default + +# status line text set -g status-interval 60 set -g status-left-length 30 set -g status-left '#(whoami)@#(hostname) : ' set -g status-right '#(cut -d " " -f 1-3 /proc/loadavg) ~%Y.%m.%d..%H.%M' # default window title colors -set-window-option -g window-status-fg brightyellow #base00 -set-window-option -g window-status-bg default -set-window-option -g window-status-attr dim +#set-window-option -g window-status-fg brightyellow #base00 +#set-window-option -g window-status-bg default +#set-window-option -g window-status-attr dim # active window title colors -set-window-option -g window-status-current-fg brightred #orange -set-window-option -g window-status-current-bg default -set-window-option -g window-status-current-attr bright +#set-window-option -g window-status-current-fg brightred #orange +#set-window-option -g window-status-current-bg default +#set-window-option -g window-status-current-attr bright # pane border -set-option -g pane-border-fg white #base2 -set-option -g pane-active-border-fg brightcyan #base1 +#set-option -g pane-border-fg white #base2 +#set-option -g pane-active-border-fg brightcyan #base1 # message text -set-option -g message-bg white #base2 -set-option -g message-fg brightred #orange +#set-option -g message-bg white #base2 +#set-option -g message-fg brightred #orange # pane number display -set-option -g display-panes-active-colour blue #blue -set-option -g display-panes-colour brightred #orange +#set-option -g display-panes-active-colour blue #blue +#set-option -g display-panes-colour brightred #orange # clock -set-window-option -g clock-mode-colour green #green +#set-window-option -g clock-mode-colour green #green # bell -set-window-option -g window-status-bell-style fg=white,bg=red #base2, red +#set-window-option -g window-status-bell-style fg=white,bg=red #base2, red |