mirror of
https://github.com/tmux/tmux.git
synced 2024-11-16 01:18:52 +00:00
25 lines
681 B
Bash
25 lines
681 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SOCKET=/tmp/tmux-1000-main
|
||
|
SESSION=natasha-main
|
||
|
|
||
|
TMUX="tmux -S $SOCKET"
|
||
|
|
||
|
if ! $TMUX -s $SESSION attach 2>/dev/null; then
|
||
|
$TMUX new -d -s $SESSION -nyelena 'exec ssh yelena' # 0
|
||
|
$TMUX -s $SESSION neww -d -ntodo 'exec emacs ~/TODO' # 1
|
||
|
$TMUX -s $SESSION neww -d -nncmpc 'exec ncmpc -f ~/.ncmpc.conf' # 2
|
||
|
$TMUX -s $SESSION neww -d # 3
|
||
|
$TMUX -s $SESSION neww -d # 4
|
||
|
$TMUX -s $SESSION neww -d # 5
|
||
|
$TMUX -s $SESSION neww -d # 6
|
||
|
$TMUX -s $SESSION neww -d # 7
|
||
|
$TMUX -s $SESSION neww -d # 8
|
||
|
$TMUX -s $SESSION neww -d # 9
|
||
|
|
||
|
$TMUX set prefix ^A
|
||
|
$TMUX set bell-action none
|
||
|
|
||
|
$TMUX -s $SESSION attach
|
||
|
fi
|