From 5e9c5b0c0e138ac381218fcce0b9cc97852f85aa Mon Sep 17 00:00:00 2001 From: johannst Date: Sat, 5 Sep 2020 00:45:17 +0200 Subject: tmux: change color of selected window in status line from orange bg to dark yellow fg --- tmux.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tmux.conf b/tmux.conf index 87fe03a..f8655bd 100644 --- a/tmux.conf +++ b/tmux.conf @@ -96,11 +96,11 @@ if-shell -b '[ $(echo "$TMUX_VERSION >= 2.9"| bc) -eq 1 ]' { # active window title colors if-shell -b '[ $(echo "$TMUX_VERSION < 2.9"| bc) -eq 1 ]' { - set-window-option -g window-status-current-fg colour255 - set-window-option -g window-status-current-bg colour208 + set-window-option -g window-status-current-fg colour220 + set-window-option -g window-status-current-bg default } if-shell -b '[ $(echo "$TMUX_VERSION >= 2.9"| bc) -eq 1 ]' { - set-window-option -g window-status-current-style 'bg=colour208 fg=colour255' + set-window-option -g window-status-current-style 'bg=default fg=colour220' } # pane border -- cgit v1.2.3