aboutsummaryrefslogtreecommitdiff
path: root/examples/start-tmux.sh
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 17:15:29 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 17:15:29 +0000
commit543e7b0f03f2c41752ec2e244e26c525a4791cb8 (patch)
tree57fbb81363302cdbc4ab6c053a507381a7dba8cb /examples/start-tmux.sh
parent1b9647669a1190044f2296008a25e3aa0016934b (diff)
downloadrtmux-543e7b0f03f2c41752ec2e244e26c525a4791cb8.tar.gz
rtmux-543e7b0f03f2c41752ec2e244e26c525a4791cb8.tar.bz2
rtmux-543e7b0f03f2c41752ec2e244e26c525a4791cb8.zip
-n is now -s on new-session.
Diffstat (limited to 'examples/start-tmux.sh')
-rwxr-xr-xexamples/start-tmux.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/start-tmux.sh b/examples/start-tmux.sh
deleted file mode 100755
index ee21057c..00000000
--- a/examples/start-tmux.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-tmux attach
-if [[ $? = 1 ]]; then
- tmux new-session -d -nmain 'exec irssi'
- tmux -smain set prefix '^H'
- tmux -smain new-window -d -nherrie 'exec sudo herrie -c /home/mxey/etc/herrie/config'
- tmux -smain new-window -d 'exec lynx'
- exec tmux -smain attach
-fi