mirror of
https://github.com/theniceboy/.config.git
synced 2026-04-17 01:05:19 +08:00
8 lines
148 B
Bash
Executable file
8 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
|
|
LOCK="/tmp/tmux-new-session.lock"
|
|
if [ -f "$LOCK" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
python3 "$HOME/.config/tmux/scripts/session_manager.py" created
|