mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-13 15:42:20 +00:00
15 lines
168 B
Bash
Executable File
15 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
autonight -d 3
|
|
;;
|
|
stop)
|
|
kill -9 $(pidof autonight)
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop}"
|
|
exit 1
|
|
;;
|
|
esac
|