laptop-dots/Scripts/tmux

13 lines
181 B
Plaintext
Raw Normal View History

2023-03-08 05:38:29 +00:00
#!/bin/bash
DIR_NAME=${PWD##*/}
tmux has-session -t $DIR_NAME 2>/dev/null
if [ $? -eq 1 ]
then
tmux new -s $DIR_NAME -d
tmux attach -t $DIR_NAME
else
tmux a -t $DIR_NAME
fi