From 25556093dd472d4dafff15a07d99e67898c134a9 Mon Sep 17 00:00:00 2001 From: inkch Date: Tue, 16 Jan 2024 19:22:13 +0900 Subject: [PATCH] tmux: tweaking ui colors --- dot_config/tmux/tmux.conf.tmpl | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/dot_config/tmux/tmux.conf.tmpl b/dot_config/tmux/tmux.conf.tmpl index b1b7984..ae373b8 100644 --- a/dot_config/tmux/tmux.conf.tmpl +++ b/dot_config/tmux/tmux.conf.tmpl @@ -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")) }} set -g pane-active-border-style fg=yellow -set -g message-command-style 'fg=#cccccc bg=#333333 bold' -set -g message-style 'fg=#cccccc bg=#333333 bold' +set -g message-command-style 'fg=#ccc bg=#333333 bold' +set -g message-style 'fg=#ccc bg=#333333 bold' 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-bg '#333333' -set -g status-fg '#cccccc' +set -g status-bg '#333' +set -g status-fg '#ccc' set -g status-left '' set -g status-right '' set -g window-status-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 }}