freebsd-dev/etc/devd/apple.conf
Warner Losh b5e2ff92e5 User service foo rather than /etc/rc.d/foo.
devd predates service in the system. Modernize usage to use service to
start/stop things in reaction to events rather than calling the rc
file directly.

This was pointed out in my talk at BSDcan as well as indirectly
referrred to as a barrier to entry for OpenRC in that working group.
2018-06-11 22:48:34 +00:00

81 lines
1.6 KiB
Plaintext

# $FreeBSD$
#
# PowerPC Apple specific devd events
# Keyboard power key
notify 0 {
match "system" "PMU";
match "subsystem" "Button";
action "shutdown -p now";
};
# PowerBook and iBook lid close.
notify 0 {
match "system" "PMU";
match "subsystem" "lid";
match "type" "close";
action "shutdown -p now";
};
# The next blocks enable brightness hotkeys that can be found on Apple laptops
notify 0 {
match "system" "PMU";
match "subsystem" "keys";
match "type" "brightness";
match "notify" "down";
action "sysctl dev.backlight.0.level=\
$(expr `sysctl -n dev.backlight.0.level` - 10)";
};
notify 0 {
match "system" "PMU";
match "subsystem" "keys";
match "type" "brightness";
match "notify" "up";
action "sysctl dev.backlight.0.level=\
$(expr `sysctl -n dev.backlight.0.level` + 10)";
};
# The next blocks enable volume hotkeys that can be found on Apple laptops
notify 0 {
match "system" "PMU";
match "subsystem" "keys";
match "type" "mute";
action "mixer 0";
};
notify 0 {
match "system" "PMU";
match "subsystem" "keys";
match "type" "volume";
match "notify" "down";
action "mixer vol -10";
};
notify 0 {
match "system" "PMU";
match "subsystem" "keys";
match "type" "volume";
match "notify" "up";
action "mixer vol +10";
};
# Eject key
notify 0 {
match "system" "PMU";
match "subsystem" "keys";
match "type" "eject";
action "camcontrol eject cd0";
};
# Equivalent to the ACPI/ACAD notify
notify 10 {
match "system" "PMU";
match "subsystem" "POWER";
match "type" "ACLINE";
action "service power_profile $notify";
};