chch-power/run.sh
2017-02-19 22:42:49 +00:00

10 lines
129 B
Bash
Executable file

#!/bin/bash
cd "$(dirname $0)"
(
while true; do
/usr/bin/python3 chch-power.py >/dev/null 2>&1
sleep 1
done
) &
disown $!