diff options
author | Maximilian Gass <mxey@arcor.de> | 2007-10-04 14:14:12 +0000 |
---|---|---|
committer | Maximilian Gass <mxey@arcor.de> | 2007-10-04 14:14:12 +0000 |
commit | beae2d91a491ca0866e7b99f33d44a37028912a8 (patch) | |
tree | 7190bedb75252bff649b2aa5c09580698e3db8a8 | |
parent | 6a784ba0b0b450fe21034d97280f7d4dce702d42 (diff) | |
download | rtmux-beae2d91a491ca0866e7b99f33d44a37028912a8.tar.gz rtmux-beae2d91a491ca0866e7b99f33d44a37028912a8.tar.bz2 rtmux-beae2d91a491ca0866e7b99f33d44a37028912a8.zip |
Added my tmux start script as an example (examples/start-tmux.sh)
-rw-r--r-- | CHANGES | 3 | ||||
-rwxr-xr-x | examples/start-tmux.sh | 10 |
2 files changed, 12 insertions, 1 deletions
@@ -1,5 +1,6 @@ 04 October 2007 +* (mxey) Added my tmux start script as an example (examples/start-tmux.sh) * (mxey) New sessions can now be given a command for their first window * (mxey) Fixed usage statemnt for new-window * (nicm) attach-session (can't believe I forgot it until now!) and list-windows @@ -114,5 +115,5 @@ (including mutt, emacs). No status bar yet and no key remapping or other customisation. -$Id: CHANGES,v 1.33 2007-10-04 13:43:14 mxey Exp $ +$Id: CHANGES,v 1.34 2007-10-04 14:14:12 mxey Exp $ diff --git a/examples/start-tmux.sh b/examples/start-tmux.sh new file mode 100755 index 00000000..ee21057c --- /dev/null +++ b/examples/start-tmux.sh @@ -0,0 +1,10 @@ +#!/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 |