I would think it has sense to use tmux more under a tiling wm. I still do not understand your use of it.
Think of tmux more as job control on steroids. I.e spawning a new xterm for every shell is quite wasteful.
I would think it has sense to use tmux more under a tiling wm. I still do not understand your use of it.
Think of tmux more as job control on steroids. I.e spawning a new xterm for every shell is quite wasteful.
exec xterm -display :0.1 -e tmux new-session -s Session-Name03 -n Name-Windows \; split-window -v &
exec xterm tmux new-session -s Session-Name02 -n Windows-Name \; split-window -v \; selectp -t 0 \; split-window -h\; selectp -t 2 \; split-window -h\; selectp -t 3 \; split-window -h \; selectp -t 1 \; split-window -h &
exec alacritty -display :0.1 -e tmux new-session -s Session-Name01 -n Windows-name \; split-window -h \; new-window -n Windows-name2 \; split-window -h \; new-window -n Windows-name3 \; split-window -h &
set -g @plugin 'tmux-plugins/tmux-resurrect'
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
run '~/.tmux/plugins/tpm/tpm'
The reason I use tmux under X11 is because I can quickly swap between windows using C-> or C< rather than requiring to use the prefix key.And if he is using X11, then tmux makes also not much sense.
My tmux opens by default menus with C-B < and C-B >, these menus are a newer feature of tmux and runThe reason I use tmux under X11 is because I can quickly swap between windows using C-> or C< rather than requiring to use the prefix key.