Skip to content

Instantly share code, notes, and snippets.

@oflow
Created December 20, 2016 04:10
Show Gist options
  • Save oflow/944a786bf4c93c45868086dcd396e95c to your computer and use it in GitHub Desktop.
Save oflow/944a786bf4c93c45868086dcd396e95c to your computer and use it in GitHub Desktop.
suspend -> wake up 7h later
#!/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