From 71eece2a8c8d37f2782f2a0ec3426b8ac1e4bc46 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 23 Feb 2010 13:07:58 +0200 Subject: separate delays --- sandman.command | 12 ++++++------ 1 file 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 -- cgit v1.2.3