From 89bffd00e62381d03e44ce772b678e0b3d9b90ec Mon Sep 17 00:00:00 2001 From: OpenCode Test Date: Mon, 29 Dec 2025 12:29:20 -0800 Subject: [PATCH] Use PA-specific tmux config for power mode theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both pa-mode and pa-launch now use ~/.tmux-pa.conf which applies a Dracula purple theme to visually distinguish privileged sessions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- automation/pa-launch | 3 ++- automation/pa-mode | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/automation/pa-launch b/automation/pa-launch index f11a2e2..ca2edd8 100755 --- a/automation/pa-launch +++ b/automation/pa-launch @@ -32,5 +32,6 @@ else export PA_SESSION_ID="$session_id" export PA_HISTORY_FILE="$HISTORY_DIR/${session_id}.jsonl" - tmux new-session -s "$SESSION" "$CLAUDE" --dangerously-skip-permissions --agent personal-assistant + # Uses PA-specific config for distinct "power mode" visual theme + tmux -f ~/.tmux-pa.conf new-session -s "$SESSION" "$CLAUDE" --dangerously-skip-permissions --agent personal-assistant fi diff --git a/automation/pa-mode b/automation/pa-mode index 0266e1d..e0b4130 100755 --- a/automation/pa-mode +++ b/automation/pa-mode @@ -48,7 +48,8 @@ create_or_attach_session() { # Using -A: attach if session exists, create if not # exec replaces this shell with tmux - exec tmux new-session -A -s "$SESSION_NAME" -c "$HOME" \ + # Uses PA-specific config for distinct "power mode" visual theme + exec tmux -f ~/.tmux-pa.conf new-session -A -s "$SESSION_NAME" -c "$HOME" \ "$CLAUDE" --dangerously-skip-permissions --agent personal-assistant }