tmux: tweaking ui colors

This commit is contained in:
inkch 2024-01-16 19:22:13 +09:00
parent 6c50a297f4
commit 25556093dd

View File

@ -85,23 +85,28 @@ bind-key p run "xsel -o | tmux load-buffer - ; tmux paste-buffer"
{{- if (or (eq .chezmoi.hostname "arch") (eq .chezmoi.hostname "buzz")) }} {{- if (or (eq .chezmoi.hostname "arch") (eq .chezmoi.hostname "buzz")) }}
set -g pane-active-border-style fg=yellow set -g pane-active-border-style fg=yellow
set -g message-command-style 'fg=#cccccc bg=#333333 bold' set -g message-command-style 'fg=#ccc bg=#333333 bold'
set -g message-style 'fg=#cccccc bg=#333333 bold' set -g message-style 'fg=#ccc bg=#333333 bold'
set -g status off set -g status off
{{- else }}
set -g pane-active-border-style fg=red
set -g message-command-style 'fg=black bg=magenta bold'
set -g message-style 'fg=black bg=magenta bold'
set -g status on
{{- end }}
set -g status-position bottom set -g status-position bottom
set -g status-bg '#333333' set -g status-bg '#333'
set -g status-fg '#cccccc' set -g status-fg '#ccc'
set -g status-left '' set -g status-left ''
set -g status-right '' set -g status-right ''
set -g window-status-format '' set -g window-status-format ''
set -g window-status-current-format '' set -g window-status-current-format ''
{{- else }}
set -g pane-active-border-style fg=red
set -g message-command-style 'fg=#ccc bg=#5b7d78 bold'
set -g message-style 'fg=#ccc bg=#5b7d78 bold'
set -g status on
set -g status-position bottom
set -g status-bg '#5b7d78'
set -g status-fg '#ccc'
set -g status-right '#[bold][#H]'
set -g window-status-format ''
set -g window-status-current-format ''
{{- end }}