From 0358127a1be7cee0432d5d5a47d4c57039d1d503 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sat, 13 Jul 2019 00:51:21 -0400 Subject: [PATCH] [tmux] virtual console compliant statusbar colors The virtual console I'm using on Linux doensn't expose the same colors, and does not distinguish between "black" and "brightblack". As such, we set it to "black" and "white" so that the commandline will show up. --- tmux/tmux.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index d1e5a94..e61a5d7 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -57,9 +57,9 @@ set allow-rename off # set-option -g default-command "which reattach-to-user-namespace > /dev/null && reattach-to-user-namespace -l $SHELL || $SHELL" # Nicer colored status bar -set -g status-style "fg=black,bg=brightblack" -set -g message-command-style "fg=black,bg=brightblack" -set -g message-style "fg=black,bg=brightblack" +set -g status-style "fg=white,bg=black" +set -g message-command-style "fg=white,bg=black" +set -g message-style "fg=white,bg=black" set -g window-status-current-style "fg=brightwhite,bg=blue" # Show clock + update every minute -- libgit2 0.28.4