Last active
November 13, 2024 00:52
-
-
Save nwjlyons/c66bbdeb62ae60ee0ef4 to your computer and use it in GitHub Desktop.
Turn Mac Book Pro backlit keyboard on and off under linux
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
# First su in as root | |
sudo su | |
# Then cd to backlight directory | |
cd /sys/class/leds/smc::kbd_backlight/ | |
# Turn the backlight on | |
cat max_brightness > brightness | |
# Set to zero to turn off the backlight | |
echo 0 > brightness |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works perfectly on my 2017 MacBook Pro running Kali Linux, thanks!