You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
245 B

  1. #!/bin/sh
  2. b=$(cat /sys/class/backlight/amdgpu_bl0/brightness)
  3. a=0
  4. if [ $b -gt 0 ]; then
  5. while [ $a -lt 10 -a $b -gt 0 ]; do
  6. b=`expr $b - 1`
  7. echo $b | sudo tee /sys/class/backlight/amdgpu_bl0/brightness
  8. a=`expr $a + 1`
  9. done
  10. fi