diff options
Diffstat (limited to 'examples/n-marriott.sh')
-rw-r--r-- | examples/n-marriott.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/n-marriott.sh b/examples/n-marriott.sh new file mode 100644 index 00000000..e1d8ecc5 --- /dev/null +++ b/examples/n-marriott.sh @@ -0,0 +1,13 @@ +#!/bin/sh -x + +[ ! -z "$TMUX" ] && exit + +# I alias this script to "session" in .profile and use it to reconnect to +# the main session (0) on my main tmux server. + +SOCKET=/tmp/tmux-1000-main + +TMUX="tmux -S $SOCKET" + +$TMUX has -s0 2>/dev/null || $TMUX start +$TMUX attach -d -s0 |