From 11441596b8f60f71d61a2abd1ca072a3a26ccdb3 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 18 Mar 2016 11:48:50 +1300 Subject: Move to new style format, window style --- tmux/tmux.conf | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 2b41c8cb..5fe7941e 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -110,31 +110,29 @@ set-window-option -g allow-rename off set-window-option -g window-status-format "#I:#W#F" # Message dialogs are white on blue -set-option -g message-bg colour18 -set-option -g message-fg colour231 +set-option -g message-style "bg=colour18,fg=colour231" # Window choosers are white on blue -set-window-option -g mode-bg colour18 -set-window-option -g mode-fg colour231 +set-window-option -g mode-style "bg=colour18,fg=colour231" -# Pane borders are in dark gray, lighter when active -set-option -g pane-active-border-fg colour244 -set-option -g pane-border-fg colour237 +# Pane borders are always in dark gray +set-option -g pane-border-style "fg=colour237" +set-option -g pane-active-border-style "fg=colour237" + +# Inactive windows have a slightly grayed-out background and default text +set-option -g window-style "bg=colour232,fg=colour248" +set-option -g window-active-style "bg=colour0,fg=colour15" # The status bar defaults to light gray on dark gray, which applies to the left # and right status bar sections described in status-left and status-right above -set-option -g status-bg colour237 -set-option -g status-fg colour248 +set-option -g status-style "bg=colour237,fg=colour248" # Titles of windows default to black text with no embellishment -set-window-option -g window-status-attr none -set-window-option -g window-status-fg colour16 +set-window-option -g window-status-style "fg=colour16" # The title of the active window is in white rather than black -set-window-option -g window-status-current-attr none -set-window-option -g window-status-current-fg colour231 +set-window-option -g window-status-current-style "fg=colour231" # A window with a bell has a title with a red background until cleared -set-window-option -g window-status-bell-attr none -set-window-option -g window-status-bell-bg colour9 +set-window-option -g window-status-bell-style "bg=colour9" -- cgit v1.2.3