Files
dotfiles/bin/toggle-run
2023-09-18 18:20:08 +02:00

4 lines
73 B
Bash
Executable File

#!/bin/dash
pgrep -axf $1 >/dev/null && pkill -xf $1 || eval $1 &
exit 0