diff options
author | Alexis Hovorka <[email protected]> | 2021-07-04 14:56:52 -0600 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2021-07-04 14:56:52 -0600 |
commit | c864d5d1c54a38757a83f7fd723f4242f49841e8 (patch) | |
tree | d1f9fdb553ddb41527406d9a11f0f464002c6447 /base | |
parent | d91bbd3eee50426d05a6644ea5fbdc4580138a46 (diff) |
[feat] Add marker for zoomed pane in tmux
Diffstat (limited to 'base')
-rw-r--r-- | base/tmux.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/tmux.conf b/base/tmux.conf index 272c954..3aa853a 100644 --- a/base/tmux.conf +++ b/base/tmux.conf @@ -25,8 +25,8 @@ set -g status-right-length 30 set -g status-style "fg=colour8,bg=colour18" set -g status-left "#(bash ~/.tmux/status)" set -g status-right "#[fg=colour19]#[bg=colour19,fg=colour7] %a %m.%d %R 💜" -set -g window-status-format "#{?#W,#W,#I} #[default,fg=colour19]" -set -g window-status-current-format "#{?#W,#W,#I} #[nobold,fg=colour19]" +set -g window-status-format "#{?#W,#W,#I}#{?window_zoomed_flag,+,} #[default,fg=colour19]" +set -g window-status-current-format "#{?#W,#W,#I}#{?window_zoomed_flag,+,} #[nobold,fg=colour19]" set -g window-status-current-style "fg=colour4,bold" set -g window-status-activity-style "fg=colour20" set -g window-status-bell-style "fg=colour20" |