[Linux] Force the keyboard backlight to stay turned off on an ASUS laptop.

in linux •  7 years ago  (edited)

Here the script that has to be executed as root.

#!/bin/bash

while true
 do echo 0 > /sys/class/leds/asus\:\:kbd_backlight/brightness
 sleep 5
done

GitHub

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

ECHO?