Remove old examples, add new.

This commit is contained in:
Nicholas Marriott
2008-06-02 20:52:43 +00:00
parent 00c6585e37
commit f6b86402c7
4 changed files with 54 additions and 67 deletions

13
examples/n-marriott.sh Normal file
View File

@ -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