From 66ca17d74aa8e2bff064f126ce43976f4fa78fc4 Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Wed, 20 Nov 2024 21:42:30 -0500 Subject: [PATCH] tmux: Update bad config --- tmux/tmux.conf | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 44d95d3..c493686 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -16,20 +16,14 @@ set -g renumber-windows on # Renumber dynamically #=============================================================================== # Colors #=============================================================================== -set -g status-fg cyan # Status bar foreground -set -g status-bg black # Status bar background +set -g status-style "fg=cyan bg=black" # Status bar style -setw -g window-status-fg cyan # Window list foreground -setw -g window-status-bg black # Window list background +setw -g window-status-style "fg=cyan bg=black" # Window list style -set -g pane-border-fg black # Pane divider foreground -set -g pane-border-bg black # Pane divider background -set -g pane-active-border-fg cyan # Active pane foreground -set -g pane-active-border-bg black # Active pane background +set -g pane-border-style "fg=black bg=black" # Pane border style +set -g pane-active-border-style "bg=black fg=cyan" # Active pane border style -set -g message-fg red # Command line foreground -set -g message-bg black # Command line background -set -g message-attr bright # Bold +set -g message-style "fg=red bg=black bright" # Command line style #=============================================================================== # Status Line #=============================================================================== @@ -38,10 +32,8 @@ set -g visual-activity off # No status line message set -g allow-rename off # Disallow program renaming set -g status-left-length 40 # Left-side char length -set -g status-left "#[bright][ #S ] " # Left-side format +set -g status-left "#[bright][ #h ] " # Left-side format set -g status-right-length 80 # Right-side char length -# Right-side format: Custom clock script, in dotfile location -set -g status-right "#[bright]#(sh ~/.dotfiles/tmux/clocks.sh)" # Window list format, and selected format set -g window-status-format '#[bg=black,fg=cyan] #I #[bg=default]' set -g window-status-current-format '#[fg=black,bg=cyan]#[fg=bright] #I ' @@ -66,4 +58,4 @@ bind -r L resize-pane -R 5 # Pane resize: +5 right bind | split-window -h -c "#{pane_current_path}" # Horizontal split bind - split-window -v -c "#{pane_current_path}" # Vertical split # Reload config file -bind r source-file ~/.tmux.conf \; display "Config Reloaded!" +bind r source-file ~/.config/tmux/tmux.conf \; display "Config Reloaded!"