Skip to content

Instantly share code, notes, and snippets.

@patte
Created August 28, 2025 13:13
Show Gist options
  • Save patte/ac81ae7a2e6aa32eef4d4846562c7bd4 to your computer and use it in GitHub Desktop.
Save patte/ac81ae7a2e6aa32eef4d4846562c7bd4 to your computer and use it in GitHub Desktop.
Turn off the LED of the powerbutton on framework notebooks.
# /etc/systemd/system/led.service
[Unit]
Description=Turn off boot button LED
After=multi-user.target
[Service]
Type=oneshot
ExecStart=/bin/bash -c "echo 0 > /sys/class/leds/chromeos:white:power/brightness"
RemainAfterExit=true
User=root
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment