mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-19 16:26:10 +01:00
4 lines
73 B
Bash
Executable File
4 lines
73 B
Bash
Executable File
#!/bin/dash
|
|
pgrep -axf $1 >/dev/null && pkill -xf $1 || eval $1 &
|
|
exit 0
|