File mobile-suspend-hook.sh of Package phosh-helpers
#!/bin/bash
# Mobile suspend / wakeup
# /usr/lib/systemd/system-sleep/mobile-suspend-hook.sh
prepare_suspend() {
echo "Preparing to suspend..."
}
resume_all() {
echo "Resuming the device..."
hwclock -s &
}
case $1 in
pre) prepare_suspend ;;
post) resume_all ;;
esac