Created
August 28, 2025 13:13
-
-
Save patte/ac81ae7a2e6aa32eef4d4846562c7bd4 to your computer and use it in GitHub Desktop.
Turn off the LED of the powerbutton on framework notebooks.
This file contains hidden or 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
# /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