Use PA-specific tmux config for power mode theme

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 <noreply@anthropic.com>
This commit is contained in:
OpenCode Test
2025-12-29 12:29:20 -08:00
parent 409370e759
commit 89bffd00e6
2 changed files with 4 additions and 2 deletions

View File

@@ -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

View File

@@ -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
}