blob: 593d544f7ef3480455a09fbe447e2a6e35e2fe1d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
sleepd is a daemon to to put a laptop to sleep if it is not
being used or if the battery is low.
You'll need to add the following lines to /etc/rc.d/rc.local.
# Start sleepd
if [ -x /etc/rc.d/rc.sleepd ]; then
/etc/rc.d/rc.sleepd start
fi
You should then add the following to /etc/rc.d/rc.local_shutdown.
# Stop sleepd
if [ -x /etc/rc.d/rc.sleepd ]; then
/etc/rc.d/rc.sleepd stop
fi
|