Renamed script to adhere to naming conventions

This commit is contained in:
2021-09-29 21:16:28 +02:00
parent 3fff390207
commit df0c7e667e
2 changed files with 1 additions and 1 deletions

3
bin/toggle-run Executable file
View File

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