disable autonight by default

This commit is contained in:
cronyx
2024-02-09 21:18:50 +03:00
parent 4bb69d527a
commit d2822fe78f

View File

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