Files
dotfiles/bin/toggle-run

4 lines
72 B
Bash
Executable File

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