From e12e237a32426c5700bde5b55717f3b8e2160c80 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Tue, 22 Sep 2015 16:24:43 +0200 Subject: [PATCH] Session without Xorg: do not modify status-left and do not display time in status-right. --- tmux.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tmux.conf b/tmux.conf index f1d6b95..d67d315 100644 --- a/tmux.conf +++ b/tmux.conf @@ -42,11 +42,12 @@ set -g status-right "[#[fg=cyan,bright]%H:%M:%S#[default]]" # Si tmux est lancé hors de Xorg, on affiche des informations supplémentaires ## Partie gauche de la barre # #H : le nom de la machine en vert -if '[ -z "$DISPLAY" ]' 'set -g status-left "[#[fg=green]#H#[default]]"' +#if '[ -z "$DISPLAY" ]' 'set -g status-left "[#[fg=green]#H#[default]]"' + ## Partie droite de la barre # #(cat /proc/loadavg | cut -d \" \" -f 1,2,3) : charge CPU en magenta # %a %Y-%m-%d %H:%M : Le jour, la date d'aujourd'hui et l'heure en cyan et gras -if '[ -z "$DISPLAY" ]' 'set -g status-right "[ #[fg=magenta]#(cat /proc/loadavg | cut -d \" \" -f 1,2,3)#[default] ][ #[fg=cyan,bright]%a %Y-%m-%d %H:%M:%S #[default]]"' +if '[ -z "$DISPLAY" ]' 'set -g status-right "[ #[fg=default]#(cat /proc/loadavg | cut -d \" \" -f 1,2,3)#[default] ]"' if '[ -z "$DISPLAY" ]' 'set -g status-right-length 50' # Raffraichissement de la barre d'état toutes les X secondes