Create S991temp_monitor

pull/1787/head
snokvist 2025-04-06 19:01:42 +02:00 committed by GitHub
parent 6c0bfdf260
commit bcd098440b
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