Created
December 20, 2016 04:10
-
-
Save oflow/944a786bf4c93c45868086dcd396e95c to your computer and use it in GitHub Desktop.
suspend -> wake up 7h later
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
opt="suspend" | |
case $1 in | |
halt|poweroff|suspend|hibernate|hybrid-sleep) | |
opt="$1" | |
;; | |
esac | |
echo 0 > /sys/class/rtc/rtc0/wakealarm | |
# off -> wake up 7h later | |
echo `date -u '+%s' -d '+7 hour'` > /sys/class/rtc/rtc0/wakealarm | |
systemctl $opt | |
# crontab -e | |
# 30 0 * * * /hoge/fuga/suspend.sh hybrid-sleep |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment