diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-09-05 00:45:17 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-09-05 00:45:17 +0200 |
commit | 5e9c5b0c0e138ac381218fcce0b9cc97852f85aa (patch) | |
tree | 7c230e77b8665a51e138565ced20f9dea5f457be /tmux.conf | |
parent | 2fd0dbef60da4329fbe21242151d225bef64aabf (diff) | |
download | dotfiles-5e9c5b0c0e138ac381218fcce0b9cc97852f85aa.tar.gz dotfiles-5e9c5b0c0e138ac381218fcce0b9cc97852f85aa.zip |
tmux: change color of selected window in status line from orange bg to dark yellow fg
Diffstat (limited to 'tmux.conf')
-rw-r--r-- | tmux.conf | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |