2000-12-12 22:43:02 +00:00
|
|
|
# apmd Configuration File
|
1999-07-10 18:02:42 +00:00
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1999-07-10 18:02:42 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
apm_event SUSPENDREQ {
|
2003-12-30 17:28:06 +00:00
|
|
|
exec "/etc/rc.suspend apm suspend";
|
1999-07-10 18:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apm_event USERSUSPENDREQ {
|
|
|
|
exec "sync && sync && sync";
|
|
|
|
exec "sleep 1";
|
|
|
|
exec "apm -z";
|
|
|
|
}
|
|
|
|
|
2003-12-30 17:40:28 +00:00
|
|
|
apm_event NORMRESUME {
|
|
|
|
exec "/etc/rc.resume apm suspend";
|
|
|
|
}
|
|
|
|
|
|
|
|
apm_event STANDBYRESUME {
|
|
|
|
exec "/etc/rc.resume apm standby";
|
1999-07-10 18:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# resume event configuration for serial mouse users by
|
|
|
|
# reinitializing a moused(8) connected to a serial port.
|
|
|
|
#
|
|
|
|
#apm_event NORMRESUME {
|
|
|
|
# exec "kill -HUP `cat /var/run/moused.pid`";
|
|
|
|
#}
|
|
|
|
|
|
|
|
# suspend request event configuration for ATA HDD users:
|
|
|
|
# execute standby instead of suspend.
|
|
|
|
#
|
|
|
|
#apm_event SUSPENDREQ {
|
|
|
|
# reject;
|
|
|
|
# exec "sync && sync && sync";
|
|
|
|
# exec "sleep 1";
|
|
|
|
# exec "apm -Z";
|
|
|
|
#}
|
|
|
|
|
2001-08-05 15:45:21 +00:00
|
|
|
# Sample entries for battery state monitoring
|
|
|
|
#apm_battery 5% discharging {
|
2001-08-06 15:52:42 +00:00
|
|
|
# exec "logger -p user.emerg battery status critical!";
|
2001-08-05 20:26:03 +00:00
|
|
|
# exec "echo T250L8CE-GE-C >/dev/speaker";
|
2001-08-05 15:45:21 +00:00
|
|
|
#}
|
|
|
|
#apm_battery 1% discharging {
|
2001-08-06 15:52:42 +00:00
|
|
|
# exec "logger -p user.emerg battery low - emergency suspend";
|
2001-08-05 20:26:03 +00:00
|
|
|
# exec "echo T250L16B+BA+AG+GF+FED+DC+CC >/dev/speaker";
|
|
|
|
# exec "apm -z";
|
2001-08-05 15:45:21 +00:00
|
|
|
#}
|
|
|
|
#apm_battery 99% charging {
|
2001-08-06 15:52:42 +00:00
|
|
|
# exec "logger -p user.notice battery fully charged";
|
2001-08-05 15:45:21 +00:00
|
|
|
#}
|
1999-07-10 18:02:42 +00:00
|
|
|
|
2001-08-05 15:45:21 +00:00
|
|
|
# apmd Configuration ends here
|