diff options
Diffstat (limited to 'misc/bin/nsp-console.sh')
-rwxr-xr-x | misc/bin/nsp-console.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/misc/bin/nsp-console.sh b/misc/bin/nsp-console.sh new file mode 100755 index 0000000..5d19f46 --- /dev/null +++ b/misc/bin/nsp-console.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +if tmux list-sessions | grep -q "scratchpad" +then + tmux attach-session -t "scratchpad" +else + tmux new-session -s "scratchpad" -n "scratchpad" -c "${HOME}" +fi |