-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstart-simple-monitor
executable file
·37 lines (33 loc) · 1.06 KB
/
start-simple-monitor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#! /bin/bash
SESSION=simple-monitor
WORKING_DIR=~/simple-monitor
# tmux mit 256 Farbunterstützung, Loginshell und UTF8-Support verwenden
tmux='tmux -2 -l -u' #
# if the session is already running, just attach to it.
$tmux has-session -t $SESSION
if [ $? -eq 0 ]; then
echo "Session $SESSION already exists. Attaching."
sleep 1
$tmux attach -t $SESSION
exit 0;
fi
$tmux new-session -d -s $SESSION
$tmux new-window -t $SESSION:0 -c '.'
$tmux split-window -d -t $SESSION:0 -v -p 25
#$tmux select-layout main-horizontal
#$tmux split-window -d -p 10 -t $SESSION:0 -v
#
$tmux send-keys -t 1 'rvm use 3' enter C-l
$tmux send-keys -t 1 "cd $WORKING_DIR" enter C-l
$tmux send-keys -t 1 'camping simple_monitor.rb -p 3333 &' enter C-l
$tmux send-keys -t 1 'tail -f simple-monitor.log' enter C-l
#tmux resize-pane -t 1 -U 10 enter
#
$tmux send-keys -t 0 'sleep 5' enter
$tmux send-keys -t 0 'elinks http://localhost:3333' enter
#
$tmux select-pane -t $SESSION:0
## if any parameter is given, do not attach to the session
if test -n ${1} ; then
$tmux attach -t $SESSION
fi