Skip to content

Instantly share code, notes, and snippets.

@nwjlyons
Last active November 8, 2025 21:14
Show Gist options
  • Select an option

  • Save nwjlyons/c66bbdeb62ae60ee0ef4 to your computer and use it in GitHub Desktop.

Select an option

Save nwjlyons/c66bbdeb62ae60ee0ef4 to your computer and use it in GitHub Desktop.
Turn Mac Book Pro backlit keyboard on and off under linux
# 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
@bry1599
Copy link

bry1599 commented Nov 8, 2025

Great help, just tested on MX Linux fluxbox on a MacBook Air 6,1!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment