diff options
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.tmux.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 1fc7f0c..9f61e37 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -2,7 +2,7 @@ set -s escape-time 0 set -g default-terminal "screen-256color" set -g mouse on -if -F "#{==:#{session_windows},1}" "set -g status off" "set -g status on" -set-hook -g window-linked 'if -F "#{==:#{session_windows},1}" "set -g status off" "set -g status on"' -set-hook -g window-unlinked 'if -F "#{==:#{session_windows},1}" "set -g status off" "set -g status on"' +set -g status off +set-hook -g window-linked 'if -F "#{==:#{session_windows},1}" "set status off" "set status on"' +set-hook -g window-unlinked 'if -F "#{==:#{session_windows},1}" "set status off" "set status on"' set -g status-position "top" |