12 lines
192 B
Bash
Executable file
12 lines
192 B
Bash
Executable file
#!/bin/sh
|
|
|
|
CONFIG_FILES="/home/sako/.config/ags"
|
|
|
|
trap "killall ags" EXIT
|
|
|
|
while true; do
|
|
ags &
|
|
export APP_PID=$!
|
|
inotifywait -e create,modify $CONFIG_FILES
|
|
kill $APP_PID
|
|
done
|