8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
if pgrep testscript.sh > /dev/null; then
|
|
pkill testscript.sh
|
|
else
|
|
~/.config/hypr/scripts/testscript.sh &
|
|
fi
|