#1# ASUS specific devd events23# The next blocks enable volume hotkeys that can be found on the Asus laptops4notify 0 {5match "system" "ACPI";6match "subsystem" "ASUS";7match "notify" "0x32";8action "mixer vol.volume=0";9};1011notify 0 {12match "system" "ACPI";13match "subsystem" "ASUS";14match "notify" "0x31";15action "mixer vol.volume=-10%";16};1718notify 0 {19match "system" "ACPI";20match "subsystem" "ASUS";21match "notify" "0x30";22action "mixer vol.volume=+10%";23};2425# The next blocks enable volume hotkeys that can be found on the Asus EeePC26notify 0 {27match "system" "ACPI";28match "subsystem" "ASUS-Eee";29match "notify" "0x13";30action "mixer vol.volume=0";31};3233notify 0 {34match "system" "ACPI";35match "subsystem" "ASUS-Eee";36match "notify" "0x14";37action "mixer vol.volume=-10%";38};3940notify 0 {41match "system" "ACPI";42match "subsystem" "ASUS-Eee";43match "notify" "0x15";44action "mixer vol.volume=+10%";45};4647# Enable user hotkeys that can be found on the Asus EeePC48# The four keys above the keyboard notify 0x1a through to 0x1d respectively49#notify 0 {50# match "system" "ACPI";51# match "subsystem" "ASUS-Eee";52# match "notify" "0x1a";53# action "";54#};55#notify 0 {56# match "system" "ACPI";57# match "subsystem" "ASUS-Eee";58# match "notify" "0x1b";59# action "";60#};61#notify 0 {62# match "system" "ACPI";63# match "subsystem" "ASUS-Eee";64# match "notify" "0x1c";65# action "";66#};67#notify 0 {68# match "system" "ACPI";69# match "subsystem" "ASUS-Eee";70# match "notify" "0x1d";71# action "";72#};737475