chch-power/run.sh

11 lines
128 B
Bash
Executable file

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