Created
December 22, 2017 04:26
-
-
Save furui/0573ab25ad0469c4c7f49c9308bc47e7 to your computer and use it in GitHub Desktop.
Set xbacklight to ACPI brightness (ROG GL702VM but probably GL502VM as well)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while true | |
do | |
inotifywait -e modify /sys/class/backlight/acpi_video0/brightness | |
echo brightness set to: $(cat /sys/class/backlight/acpi_video0/brightness) | |
xbacklight -set $(cat /sys/class/backlight/acpi_video0/brightness) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@furui Thanks for this workaround ! I still cannot get backlight working on my Asus G703VM...
but your tips is working fine ;)