Update all tmux templates to use claude -c command
Replace deprecated 'claude -r' with current 'claude -c' command: - basic.sh: 1 instance updated - content.sh: 2 instances updated - research.sh: 2 instances updated Total: 5 claude command references modernized across all templates. Templates now use current Claude Code command syntax. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
65a230f0d7
commit
558bb529e0
3 changed files with 5 additions and 5 deletions
|
|
@ -20,7 +20,7 @@ tmux new-session -d -s $SESSION_NAME -c "$CODE_PATH"
|
|||
tmux rename-window -t $SESSION_NAME:1 "nvim"
|
||||
tmux send-keys -t $SESSION_NAME:1 "nvim" C-m
|
||||
tmux new-window -t $SESSION_NAME:2 -n "ai" -c "$CODE_PATH"
|
||||
tmux send-keys -t $SESSION_NAME:2 "claude -r" C-m
|
||||
tmux send-keys -t $SESSION_NAME:2 "claude -c" C-m
|
||||
tmux split-window -t $SESSION_NAME:2 -h -c "$CODE_PATH"
|
||||
tmux split-window -t $SESSION_NAME:2.2 -v -c "$CODE_PATH"
|
||||
tmux select-pane -t $SESSION_NAME:2.1
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ tmux new-session -d -s $SESSION_NAME -c "$CODE_PATH"
|
|||
tmux rename-window -t $SESSION_NAME:1 "code"
|
||||
tmux send-keys -t $SESSION_NAME:1 "nvim" C-m
|
||||
tmux new-window -t $SESSION_NAME:2 -n "code-ai" -c "$CODE_PATH"
|
||||
tmux send-keys -t $SESSION_NAME:2 "claude -r" C-m
|
||||
tmux send-keys -t $SESSION_NAME:2 "claude -c" C-m
|
||||
tmux split-window -t $SESSION_NAME:2 -h -c "$CODE_PATH"
|
||||
tmux split-window -t $SESSION_NAME:2.2 -v -c "$CODE_PATH"
|
||||
tmux select-pane -t $SESSION_NAME:2.1
|
||||
|
|
@ -31,7 +31,7 @@ tmux send-keys -t $SESSION_NAME:3 "lazygit" C-m
|
|||
|
||||
# Create windows for content
|
||||
tmux new-window -t $SESSION_NAME:4 -n "content-ai" -c "$CONTENT_PATH"
|
||||
tmux send-keys -t $SESSION_NAME:4 "claude -r" C-m
|
||||
tmux send-keys -t $SESSION_NAME:4 "claude -c" C-m
|
||||
tmux split-window -t $SESSION_NAME:4 -h -c "$CONTENT_PATH"
|
||||
tmux split-window -t $SESSION_NAME:4.2 -v -c "$CONTENT_PATH"
|
||||
tmux select-pane -t $SESSION_NAME:4.1
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ tmux new-session -d -s $SESSION_NAME -c "$CODE_PATH"
|
|||
tmux rename-window -t $SESSION_NAME:1 "code"
|
||||
tmux send-keys -t $SESSION_NAME:1 "nvim" C-m
|
||||
tmux new-window -t $SESSION_NAME:2 -n "code-ai" -c "$CODE_PATH"
|
||||
tmux send-keys -t $SESSION_NAME:2 "claude -r" C-m
|
||||
tmux send-keys -t $SESSION_NAME:2 "claude -c" C-m
|
||||
tmux split-window -t $SESSION_NAME:2 -h -c "$CODE_PATH"
|
||||
tmux split-window -t $SESSION_NAME:2.2 -v -c "$CODE_PATH"
|
||||
tmux select-pane -t $SESSION_NAME:2.1
|
||||
|
|
@ -36,7 +36,7 @@ tmux new-window -t $SESSION_NAME:4 -n "paper" -c "$PAPER_PATH"
|
|||
tmux select-window -t $SESSION_NAME:4
|
||||
tmux send-keys -t $SESSION_NAME:4 "nvim" C-m
|
||||
tmux new-window -t $SESSION_NAME:5 -n "paper-ai" -c "$PAPER_PATH"
|
||||
tmux send-keys -t $SESSION_NAME:5 "claude -r" C-m
|
||||
tmux send-keys -t $SESSION_NAME:5 "claude -c" C-m
|
||||
tmux split-window -t $SESSION_NAME:5 -h -c "$PAPER_PATH"
|
||||
tmux split-window -t $SESSION_NAME:5.2 -v -c "$PAPER_PATH"
|
||||
tmux select-pane -t $SESSION_NAME:5.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue