diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2022-04-30 03:12:56 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2022-06-18 03:50:58 +0000 |
| commit | 4014365e421991814703249d4748d6dcac6686b6 (patch) | |
| tree | 39860d028dd177c5a355679b38de6c9d4c61075c /sbin/devd | |
| parent | 11bd40d04af59daa7ae7feea0518081a35f07053 (diff) | |
Diffstat (limited to 'sbin/devd')
| -rw-r--r-- | sbin/devd/apple.conf | 4 | ||||
| -rw-r--r-- | sbin/devd/asus.conf | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sbin/devd/apple.conf b/sbin/devd/apple.conf index 0729a9c86e7a..0a9143f7b5a5 100644 --- a/sbin/devd/apple.conf +++ b/sbin/devd/apple.conf @@ -52,7 +52,7 @@ notify 0 { match "subsystem" "keys"; match "type" "volume"; match "notify" "down"; - action "mixer vol.volume=-10"; + action "mixer vol.volume=-10%"; }; notify 0 { @@ -60,7 +60,7 @@ notify 0 { match "subsystem" "keys"; match "type" "volume"; match "notify" "up"; - action "mixer vol.volume=+10"; + action "mixer vol.volume=+10%"; }; # Eject key diff --git a/sbin/devd/asus.conf b/sbin/devd/asus.conf index eed369f6ca4d..0074e7a7c55f 100644 --- a/sbin/devd/asus.conf +++ b/sbin/devd/asus.conf @@ -14,14 +14,14 @@ notify 0 { match "system" "ACPI"; match "subsystem" "ASUS"; match "notify" "0x31"; - action "mixer vol.volume=-10"; + action "mixer vol.volume=-10%"; }; notify 0 { match "system" "ACPI"; match "subsystem" "ASUS"; match "notify" "0x30"; - action "mixer vol.volume=+10"; + action "mixer vol.volume=+10%"; }; # The next blocks enable volume hotkeys that can be found on the Asus EeePC @@ -36,14 +36,14 @@ notify 0 { match "system" "ACPI"; match "subsystem" "ASUS-Eee"; match "notify" "0x14"; - action "mixer vol.volume=-10"; + action "mixer vol.volume=-10%"; }; notify 0 { match "system" "ACPI"; match "subsystem" "ASUS-Eee"; match "notify" "0x15"; - action "mixer vol.volume=+10"; + action "mixer vol.volume=+10%"; }; # Enable user hotkeys that can be found on the Asus EeePC |
