comparison rc/tmux-2.9.conf @ 699:5ca9e6f4039e

[tmux] support custom status bg
author nanaya <me@nanaya.pro>
date Mon, 31 Oct 2022 17:53:58 +0900
parents 5ebfac7426e5
children 9ad5a65b1c7e
comparison
equal deleted inserted replaced
698:8c2ba562b15a 699:5ca9e6f4039e
1 set -g default-terminal "screen-256color" 1 set -g default-terminal "screen-256color"
2 set -g repeat-time 0 2 set -g repeat-time 0
3 set -g status-bg cyan 3 %if "#{==:${TMUX_STATUS_BG},}"
4 set -g status-bg cyan
5 %else
6 set -g status-bg "${TMUX_STATUS_BG}"
7 %endif
4 set -g status-fg black 8 set -g status-fg black
5 9
6 set -g status-left '#[bg=white,fg=black] #S #[default] ' 10 set -g status-left '#[bg=white,fg=black] #S #[default] '
7 11
8 set -g status-right '#[bg=white,fg=black] #H #[bg=black,fg=white] %b-%d %H:%M ' 12 set -g status-right '#[bg=white,fg=black] #H #[bg=black,fg=white] %b-%d %H:%M '