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: