From 0e6a16ae82ac5029ddbc9ebf710e599c5d54b363 Mon Sep 17 00:00:00 2001 From: steel99xl Date: Tue, 6 Aug 2024 16:02:09 -0400 Subject: [PATCH] forgot to use LC_NUMERIC --- AutomaticBrightness.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomaticBrightness.sh b/AutomaticBrightness.sh index ee728e3..d0d0054 100755 --- a/AutomaticBrightness.sh +++ b/AutomaticBrightness.sh @@ -118,7 +118,7 @@ do CurrentBrightness=$(cat $BLightPath) # Add MinimumBrighness here to not effect comparison but the outcome - Light=$(LANG=C printf "%.0f" $(echo "scale=2; $Light + ( ($MaxScreenBrightness * ( $MinimumBrightness / 100 )) / $SensorToDisplayScale ) " | bc )) + Light=$(LC_NUMERIC=C printf "%.0f" $(echo "scale=2; $Light + ( ($MaxScreenBrightness * ( $MinimumBrightness / 100 )) / $SensorToDisplayScale ) " | bc )) # Gernate a TempLight value for the screen to be set to # Float math thanks Matthias_Wachter