diff --git a/sbin/thewhispererindarkness.sh b/sbin/thewhispererindarkness.sh index 249ab21..5e5ad5d 100755 --- a/sbin/thewhispererindarkness.sh +++ b/sbin/thewhispererindarkness.sh @@ -18,6 +18,7 @@ do if [ -e "${MAINPY}" ] then echo "main.py found" + $(python ${MAINPY})& fi if [ -e "${MAINPD}" ] then @@ -25,6 +26,11 @@ do fi else echo "floppy out (no fs detected)" + if [ "$(pgrep python)" ] + then + echo "python still running ... killing" + pkill -9 python + fi fi fi done