From 9c166ecf9056632997f63ccaf00e58556e25cf02 Mon Sep 17 00:00:00 2001 From: Thierry Schork Date: Fri, 11 Jul 2025 05:54:35 +0200 Subject: [PATCH] adapted brightness increment value for x13 --- bin/brightness | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/brightness b/bin/brightness index 16ad15a..81d2c51 100755 --- a/bin/brightness +++ b/bin/brightness @@ -11,8 +11,8 @@ if test $action = up echo (math $current_value + $dvalue) > $backlight_device else if test $action = down set newVal (math $current_value - $dvalue) - if test $newVal -lt 100 - set newVal 100 + if test $newVal -lt 2424 + set newVal 2424 end echo New brightness value: $newVal echo $newVal > $backlight_device