summaryrefslogtreecommitdiffstats
path: root/etc/apmd.conf
blob: be4a6c3ddd4c50bd618e89a1ecfca7b336f7b78a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# apmd Configuration File
#
# $FreeBSD$
#

apm_event SUSPENDREQ {
	exec "/etc/rc.suspend apm suspend";
}

apm_event USERSUSPENDREQ {
	exec "sync && sync && sync";
	exec "sleep 1";
	exec "apm -z";
}

apm_event NORMRESUME {
	exec "/etc/rc.resume apm suspend";
}

apm_event STANDBYRESUME {
	exec "/etc/rc.resume apm standby";
}

# 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";
#}

# Sample entries for battery state monitoring
#apm_battery 5% discharging {
#	exec "logger -p user.emerg battery status critical!";
#	exec "echo T250L8CE-GE-C >/dev/speaker";
#}
#apm_battery 1% discharging {
#	exec "logger -p user.emerg battery low - emergency suspend";
#	exec "echo T250L16B+BA+AG+GF+FED+DC+CC >/dev/speaker";
#	exec "apm -z";
#}
#apm_battery 99% charging {
#	exec "logger -p user.notice battery fully charged";
#}

# apmd Configuration ends here
OpenPOWER on IntegriCloud