Files
2025-09-27 01:01:01 +04:00

10 lines
223 B
Bash
Executable File

#!/usr/bin/env sh
mkdir -p "$HOME/.local/state"
LOCKFILE="$HOME/.local/state/once.lock"
# Kills the process if it's already running
lsof -Fp "$LOCKFILE" | sed 's/^p//' | xargs -r kill
flock --verbose -n "$LOCKFILE" "$@"