diff options
-rw-r--r-- | sandman.command | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sandman.command b/sandman.command index adfe85e..18f2190 100644 --- a/sandman.command +++ b/sandman.command @@ -1,16 +1,16 @@ #!/usr/bin/env bash -DELAY=120 +ON_DELAY=20 +OFF_DELAY=20 if [[ $USER != "root" ]]; then echo "This must be run as root" exit 1 fi -osascript -e "delay $DELAY" -TIMESTAMP=$(php -r "echo date('H:i:s', time() + $DELAY);") -pmset repeat poweron MTWRFSU $TIMESTAMP +sleep $ON_DELAY +TIMESTAMP=$(php -r "echo @date('H:i:s', time() + ${OFF_DELAY});") +pmset repeat poweron MTWRFSU ${TIMESTAMP} echo -n $(date "+%d.%m.%y @ %H:%I:%S") >> $LOGFILE echo " " $(wc -l $LOGFILE) >> $LOGFILE -osascript -e 'tell application "Finder" to shut down' -exit 0 +shutdown -h now |