Rename window tmux
Rename the current window
<prefix> ,
more tmux
all 17 commands →
Switch window by number
<prefix> 0-9
Enter copy mode
<prefix> [
Synchronize panes
tmux setw synchronize-panes on
Send command to all panes
tmux list-panes -s -F '#{session_name}:#{window_index}.#{pane_index}' | xargs -I{} tmux send-keys -t {} 'uptime' Enter
Scripted detached session
tmux new-session -d -s work && tmux send-keys -t work 'tail -f /var/log/app.log' Enter