Initial commit

This commit is contained in:
Brandon
2019-08-16 17:12:59 -05:00
commit c42f504220
5 changed files with 128 additions and 0 deletions

9
run.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
function stop() {
kill $PID
}
trap stop HUP INT TERM
su-exec mopidy mopidy --config "/data/config/mopidy.conf" "${@}" &
PID=$!
wait $PID