From 38660b9cda890941f080e400bb8a2437ea5bd21f Mon Sep 17 00:00:00 2001 From: jonnyboy Date: Thu, 10 Jan 2013 02:16:57 -0500 Subject: [PATCH] fixed session name - not window title --- start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/start.sh b/start.sh index 588322ea4..296ba913a 100755 --- a/start.sh +++ b/start.sh @@ -19,7 +19,7 @@ if [[ $AGREED == "no" ]]; then fi printf "\033]0; $TMUX_SESSION\007\003\n" -$TMUX new-session -d -s NewzNab -n $TMUX_SESSION 'echo "monitor Working......" && nice -n 19 $PHP bin/monitor.php && exec bash -i' +$TMUX new-session -d -s $TMUX_SESSION -n NewzNab 'echo "monitor Working......" && nice -n 19 $PHP bin/monitor.php && exec bash -i' $TMUX selectp -t 0 $TMUX splitw -h -p 72 'cd bin && echo "Processing Books....." && sleep 12 && nice -n 19 ./postProcessing1.sh && exec bash -i' $TMUX splitw -h -p 50 'cd bin && echo "imports Working......" && nice -n 10 ./workhorse.sh && exec bash -i' @@ -58,6 +58,6 @@ if [[ $USE_MYTOP == "true" ]]; then fi $TMUX new-window -n Console 'bash -i' -$TMUX select-window -tNewzNab:0 -$TMUX attach-session -d -tNewzNab +$TMUX select-window -t$TMUX_SESSION:0 +$TMUX attach-session -d -t$TMUX_SESSION