dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 0358127a1be7cee0432d5d5a47d4c57039d1d503 (patch)
parent b553c1d6c14c9d9e4ddb007a783e3f2f94b6618c
Author: Alex Karle <alex@karle.co>
Date:   Sat, 13 Jul 2019 00:51:21 -0400

[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.

Diffstat:
Mtmux/tmux.conf | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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