added changing brightness

This commit is contained in:
nat 2025-06-23 02:28:32 -04:00
parent 1ca1a17cec
commit 895c11e4f7
4 changed files with 10 additions and 7 deletions

View file

@ -1,6 +1,6 @@
bright=`cat /sys/class/backlight/amdgpu_bl1/brightness`
bright=$(brightnessctl get)
state=-1
thresh=(1 2 3 4 5 6 8 10 13 16 21 27 34 44 57 73 94 120 155 199 255)
thresh=(0 1 2 3 5 9 15 27 46 80 139 240 415 717 1240 2145 3710 6418 11100 19200)
for i in ${!thresh[@]}; do
if [ $bright -ge ${thresh[$i]} ]
@ -12,5 +12,5 @@ done
new=$(($1 + $state))
if [ $new -ge 0 ] && [ $new -le 20 ]
then
echo ${thresh[$new]} | tee /sys/class/backlight/amdgpu_bl1/brightness
echo $(brightnessctl set ${thresh[$new]})
fi