diff options
author | Rui Paulo <rpaulo@FreeBSD.org> | 2008-06-27 12:04:36 +0000 |
---|---|---|
committer | Rui Paulo <rpaulo@FreeBSD.org> | 2008-06-27 12:04:36 +0000 |
commit | aea61887190fd348a497873687b51adce9a9a0ef (patch) | |
tree | 351a89d15825148a7deca49a508d30a0e3b45c93 /etc | |
parent | b562fe75e6bac201a10b99402670a320a4b6e00b (diff) | |
download | src-aea61887190fd348a497873687b51adce9a9a0ef.tar.gz src-aea61887190fd348a497873687b51adce9a9a0ef.zip |
Notes
Diffstat (limited to 'etc')
-rw-r--r-- | etc/devd.conf | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/etc/devd.conf b/etc/devd.conf index 8dbf34b605c1..c081f1fc0fc1 100644 --- a/etc/devd.conf +++ b/etc/devd.conf @@ -255,6 +255,28 @@ notify 10 { action "/etc/rc.resume acpi $notify"; }; +# The next blocks enable volume hotkeys that can be found on the Asus EeePC +notify 0 { + match "system" "ACPI"; + match "subsystem" "ASUS-Eee"; + match "notify" "0x13"; + action "mixer 0"; +}; + +notify 0 { + match "system" "ACPI"; + match "subsystem" "ASUS-Eee"; + match "notify" "0x14"; + action "mixer vol -10"; +}; + +notify 0 { + match "system" "ACPI"; + match "subsystem" "ASUS-Eee"; + match "notify" "0x15"; + action "mixer vol +10"; +}; + /* EXAMPLES TO END OF FILE # The following might be an example of something that a vendor might |