8 lines
206 B
Bash
8 lines
206 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
tmux new-session -d -s comms 'newsboat && /bin/bash'
|
||
|
tmux rename-window "Comms"
|
||
|
tmux select-window -t comms:1
|
||
|
tmux split-window -v -l 10 'weechat && /bin/bash'
|
||
|
tmux -2 attach-session -t comms
|