From 00bf69e5cd87e2f72951b9f4198532552e7d6777 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Thu, 28 Jan 2016 23:55:11 +0100 Subject: [PATCH] local tmux now uses debianred color --- tmux.conf.local | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tmux.conf.local b/tmux.conf.local index 730c59a..0086dca 100644 --- a/tmux.conf.local +++ b/tmux.conf.local @@ -1,15 +1,16 @@ + ### statusbar {{{ -# Couleur du foreground (premier plan) -set -g status-fg yellow -# Couleur du background (arrière plan) +# forground color +set -g status-fg "${debianred}" +# background color set -g status-bg black ## Terminaux par défaut # Window foreground color -set-window-option -g window-status-fg cyan +set-window-option -g window-status-fg "${debianred}" # Window background color -set-window-option -g window-status-bg default +set-window-option -g window-status-bg "${darkgrey}" # Attribut #bright/bold: #dim: @@ -24,7 +25,7 @@ set-window-option -g window-status-attr bold # Current windows foreground color set-window-option -g window-status-current-fg black # Current windows background color -set-window-option -g window-status-current-bg cyan +set-window-option -g window-status-current-bg "${debianred}" # Attribut (cf ci-dessus pour la liste) set-window-option -g window-status-current-attr dim @@ -40,7 +41,7 @@ set-window-option -g window-status-current-attr dim set -g pane-border-fg white ## Panel actif -set -g pane-active-border-fg cyan +set -g pane-active-border-fg "${debianred}" ### }}}