All tmux sessions as a single terminal
Posted by lygten 1 day ago
tmux new-session -d -s all \; set -t all mouse on \; set-option -t all destroy-unattached off >/dev/null 2>&1; for s in $(tmux list-sessions -F '#{session_name}' | grep -v '^all$'); do tmux link-window -s "$s:" -t all:; done; tmux attach -t all
Comments
Comment by lygten 1 day ago
Great for running multiple agents