From 5e4b1fc93006e175f8c9f2e69084a0c65024e643 Mon Sep 17 00:00:00 2001 From: Jelle Spreeuwenberg Date: Thu, 23 Apr 2026 01:14:07 +0200 Subject: [PATCH] feat: decrease brightness step size --- modules/features/niri/_bindings.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/features/niri/_bindings.nix b/modules/features/niri/_bindings.nix index 12c2da4..90725ca 100644 --- a/modules/features/niri/_bindings.nix +++ b/modules/features/niri/_bindings.nix @@ -54,11 +54,11 @@ allow-when-locked = true; }; "XF86MonBrightnessUp" = { - action.spawn-sh = "brightnessctl s 10%+"; + action.spawn-sh = "brightnessctl s 5%+"; allow-when-locked = true; }; "XF86MonBrightnessDown" = { - action.spawn-sh = "brightnessctl s 10%-"; + action.spawn-sh = "brightnessctl s 5%-"; allow-when-locked = true; };