From dcdadeb5c3c9c36369e886d3550b9878792361de Mon Sep 17 00:00:00 2001 From: "Lloyd W. Slade" Date: Tue, 28 Jan 2020 13:53:04 -0500 Subject: [PATCH] removed 256colour colours from status bar --- tmux-2.9.conf | 12 ++++++------ tmux-right.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tmux-2.9.conf b/tmux-2.9.conf index 34e1848..e437632 100644 --- a/tmux-2.9.conf +++ b/tmux-2.9.conf @@ -33,14 +33,14 @@ tmux_conf_new_pane_retain_current_path=true set -g window-status-separator '' set -g @ssh_auto_rename_window off -set -g status-style 'fg=colour250,bg=colour0' +set -g status-style '' -set-window-option -g status-left "#{?client_prefix,#[bg=coolour250]#[bg=colour34 fg=colour255],} #S " +set-window-option -g status-left "#[bg=green, fg=black]#{?client_prefix,#[bg=black fg=green]#[bg=yellow fg=black],} #S " set-window-option -g status-right "#(~/fmux/tmux-right.sh)" -set-window-option -g window-status-style "fg=colour250,bg=colour237" -set-window-option -g window-status-current-style "fg=colour255,bg=colour34" -set-window-option -g window-status-bell-style "fg=colour160,bg=colour237" -set-window-option -g window-status-activity-style "fg=colour34,bg=colour237" +set-window-option -g window-status-style "fg=white" +set-window-option -g window-status-current-style "fg=black,bg=green" +set-window-option -g window-status-bell-style "fg=yellow" +set-window-option -g window-status-activity-style "fg=blue" set-window-option -g window-status-format ' #I #W ' set-window-option -g window-status-current-format ' #I #W ' diff --git a/tmux-right.sh b/tmux-right.sh index ca439dd..debd590 100755 --- a/tmux-right.sh +++ b/tmux-right.sh @@ -4,4 +4,4 @@ HOST=$(hostname -s) UTC=$(date -u +"%H:%M") STRING_UP=$(echo "↑ $UP") STRING_GMT=$(echo "UTC $UTC") -echo '#[fg=colour249, bg=colour237] #('echo $STRING_GMT') #[fg=colour34, bg=colour237] #('echo $STRING_UP') #[fg=colour255 bg=colour34] #('echo $HOST') ' +echo '#('echo $STRING_GMT') #[fg=green] #('echo $STRING_UP') #[fg=black bg=green] #('echo $HOST') '