Settings

Theme

All tmux sessions as a single terminal

2 points by lygten 4 days ago · 1 comment · 1 min read


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

lygtenOP 4 days ago

Great for running multiple agents

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection