From 3ee50a2f97cea8fe8585525cf90447cf04052e04 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Wed, 21 May 2025 14:46:33 -0300 Subject: [PATCH] :wrench: hypr(bindings): use `binde` instead of `bind` for volume keys this makes possible the action to repeat on-press, so it's easier to control volume by keyboard --- hypr/shell/bindings.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypr/shell/bindings.conf b/hypr/shell/bindings.conf index 21f982d..7647f36 100644 --- a/hypr/shell/bindings.conf +++ b/hypr/shell/bindings.conf @@ -26,8 +26,8 @@ bind = $mainMod, W, exec, astal runner '##' # bind = $mainMod, $mainMod_L, exec, astal toggle apps-window bind = $mainMod, $mainMod_l, exec, astal peek-workspace-num -bind = , XF86AudioLowerVolume, exec, astal volume sink-decrease 5 || wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- # Decrease volume -bind = , XF86AudioRaiseVolume, exec, astal volume sink-increase 5 || wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ # Increase volume +binde = , XF86AudioLowerVolume, exec, astal volume sink-decrease 5 || wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- # Decrease volume +binde = , XF86AudioRaiseVolume, exec, astal volume sink-increase 5 || wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ # Increase volume bind = , XF86AudioMute, exec, astal volume sink-mute || wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle # Mute bind = , XF86AudioPrev, exec, playerctl previous # Previous media bind = , XF86AudioNext, exec, playerctl next # Next media