======Applications - Terminals - tmux - Notes====== =====Open tmux with several windows with applications===== Open a new tmux session with 2 extra windows all named (-n) and start an application in each: tmux new-session -n ssh \; \ send-keys 'ssh root@10.10.10.10' C-m \; \ new-window -n profile \; \ send-keys 'vi .profile' C-m \; \ new-window -n etc \; \ send-keys 'ls -l /etc' C-m \; \ attach Sources: * [[https://stackoverflow.com/questions/5609192/how-to-set-up-tmux-so-that-it-starts-up-with-specified-windows-opened|Stack Overflow - How to set up tmux so that it starts up with specified windows opened?]] * [[https://stackoverflow.com/questions/8537149/how-to-start-tmux-with-several-windows-in-different-directories|Stack Overflow - How to start tmux with several windows in different directories?]]