Create S991temp_monitor

pull/1785/head
snokvist 2025-04-06 06:56:31 +02:00 committed by GitHub
parent 2357b61e68
commit efd4aaa494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/bin/sh
case "$1" in
start)
echo "Starting temperature check..."
temp_monitor &>/dev/null &
;;
stop)
echo "Stopping temperature check..."
killall -q temp_monitor
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac