I just added a file 99zzkidtimer to /usr/lib/pm-utils/sleep.d so that kidtimer will run when my computer is woken from sleep:
#!/bin/sh
# This script makes kidtimer update account status when the machine is woken up.
# For a laptop, these are the closest parallels to turning on a desktop.
case $1 in
resume|thaw)
/usr/local/bin/kidtimer hourly
;;
esac
Do you think this could be added to the distribution?
Hello,
I just added a file 99zzkidtimer to /usr/lib/pm-utils/sleep.d so that kidtimer will run when my computer is woken from sleep:
Do you think this could be added to the distribution?