add wansview q5 2k and xiaomi aw200

This commit is contained in:
cronyx
2023-12-09 20:40:20 +03:00
parent a800d4ff16
commit 2e3b1b1c1b
11 changed files with 2554 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/sh
case "$1" in
start)
autonight -d 3
;;
stop)
kill -9 $(pidof autonight)
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac