diff --git a/modules/tmux.nix b/modules/tmux.nix index c0f4486..b06229f 100644 --- a/modules/tmux.nix +++ b/modules/tmux.nix @@ -26,8 +26,7 @@ # Window status colors set -g window-status-style 'bg=#3c3836,fg=#a89984' set -g window-status-current-style 'bg=#fabd2f,fg=#282828' - set -g window-status-activity-style 'bg=#d3869b,fg=#282828' - + # Pane border colors set -g pane-border-style 'fg=#3c3836' set -g pane-active-border-style 'fg=#fabd2f' @@ -96,13 +95,6 @@ # Faster command sequences set -s escape-time 0 - # Activity monitoring - setw -g monitor-activity on - set -g visual-activity off - - # Manual toggle for activity monitoring - bind A setw monitor-activity \; display-message "Activity monitoring: #{?monitor-activity,ON,OFF}" - # Automatically renumber windows set -g renumber-windows on diff --git a/scripts/project-launcher.sh b/scripts/project-launcher.sh index 1d653f9..a58b785 100755 --- a/scripts/project-launcher.sh +++ b/scripts/project-launcher.sh @@ -248,7 +248,6 @@ while IFS= read -r window_config; do tmux new-window -t "$SESSION_NAME:$WINDOW_INDEX" -n "$GIT_WINDOW_NAME" -c "$WINDOW_PATH" tmux send-keys -t "$SESSION_NAME:$WINDOW_INDEX" "lazygit" C-m - tmux setw -t "$SESSION_NAME:$WINDOW_INDEX" monitor-activity off WINDOW_INDEX=$((WINDOW_INDEX + 1)) fi