From 646eb5df0f99cfcb1b823fdacdcd6e41eb281fce Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Fri, 20 Mar 2026 00:19:30 -0400 Subject: [PATCH] tmux --- home/tmux.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/home/tmux.nix b/home/tmux.nix index ebf48c0..6f69888 100644 --- a/home/tmux.nix +++ b/home/tmux.nix @@ -96,7 +96,6 @@ set-option -g status-position bottom set-option -g status-style bg=''${BG},fg=''${FG} - set-option -g prompt-cursor-colour '#d4be98' set-option -g status-justify left set-option -g status-left "" set-option -g status-right "#(~/.config/tmux/session-list.sh)" @@ -113,7 +112,7 @@ set-option -g window-status-current-format "\ \ - *#I\ + #[fg=''${MAGENTA}]*#[fg=default]#I\ #[fg=''${MAGENTA}]:\ #[fg=default]#W\ \ @@ -134,7 +133,7 @@ current=$(tmux display-message -p '#S') tmux list-sessions -F '#S' | while IFS= read -r s; do if [ "$s" = "$current" ]; then - printf ' *%s ' "$s" + printf ' #[fg=#d3869b]*#[fg=default]%s ' "$s" else printf ' %s ' "$s" fi