003 File Manager
Current Path:
/usr/src/sbin/devd
usr
/
src
/
sbin
/
devd
/
📁
..
📄
Makefile
(763 B)
📄
Makefile.depend
(354 B)
📄
apple.conf
(1.56 KB)
📄
asus.conf
(1.91 KB)
📄
devd.8
(4.5 KB)
📄
devd.cc
(29.19 KB)
📄
devd.conf
(9.66 KB)
📄
devd.conf.5
(22.54 KB)
📄
devd.h
(2.22 KB)
📄
devd.hh
(5.35 KB)
📄
devmatch.conf
(456 B)
📄
hyperv.conf
(3.62 KB)
📄
parse.y
(3.7 KB)
📁
tests
📄
token.l
(2.97 KB)
📄
uath.conf
(3.01 KB)
📄
ulpt.conf
(389 B)
📄
zfs.conf
(2.15 KB)
Editing: apple.conf
# $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"; };
Upload File
Create Folder