From f967bc47bca77a5330ad6878fad12b41f96b53ae Mon Sep 17 00:00:00 2001 From: alexion Date: Fri, 24 Jul 2026 14:11:04 -0400 Subject: [PATCH] fix(hyprland): cap output volume at 100 percent --- modules/desktop/hyprland/hyprland.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/desktop/hyprland/hyprland.nix b/modules/desktop/hyprland/hyprland.nix index 9c816b8..3344aba 100644 --- a/modules/desktop/hyprland/hyprland.nix +++ b/modules/desktop/hyprland/hyprland.nix @@ -142,10 +142,10 @@ in ++ workspaceBinds; # Volume and brightness keys repeat while held, each raising a popup - # through the OSD client. Volume is capped at 150 percent; the client + # through the OSD client. Volume is capped at 100 percent; the client # floors brightness so a full hold cannot black the screen out. binde = [ - ", XF86AudioRaiseVolume, exec, ${pkgs.swayosd}/bin/swayosd-client --output-volume raise --max-volume 150" + ", XF86AudioRaiseVolume, exec, ${pkgs.swayosd}/bin/swayosd-client --output-volume raise --max-volume 100" ", XF86AudioLowerVolume, exec, ${pkgs.swayosd}/bin/swayosd-client --output-volume lower" ", XF86MonBrightnessUp, exec, ${pkgs.swayosd}/bin/swayosd-client --brightness raise" ", XF86MonBrightnessDown, exec, ${pkgs.swayosd}/bin/swayosd-client --brightness lower"