From e809b6513448fc6c0e2df2cbe8017807179b7684 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= <motiejus@jakstys.lt>
Date: Fri, 7 Mar 2025 08:03:13 +0000
Subject: [PATCH] brightness: up the step

---
 modules/profiles/desktop/brightness | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/profiles/desktop/brightness b/modules/profiles/desktop/brightness
index 585bb3c..f87a651 100755
--- a/modules/profiles/desktop/brightness
+++ b/modules/profiles/desktop/brightness
@@ -12,7 +12,7 @@ fi
 
 max=$(cat "$dir/max_brightness")
 now=$(cat "$dir/brightness")
-step=$((max * 3 / 100))
+step=$((max * 5 / 100))
 min=100
 
 clamp() {