14 lines
263 B
Bash
Executable File
14 lines
263 B
Bash
Executable File
#!/bin/zsh
|
|
SESSION=debugger
|
|
tmux ls | grep -q "^$SESSION" && exit 0
|
|
#####################################################################
|
|
|
|
cd
|
|
|
|
tmux new -d -s $SESSION \
|
|
;
|
|
|
|
tmux new-window -t $SESSION -n \
|
|
'WARNING' /root/.wryn/.docker/session/show-warning \
|
|
;
|