Thinkpad: Turnoff the mic mute, sound mute and power button LEDs

1
2
3
4
5
#!/bin/bash
SYSFS_THINKPAD_LED="/sys/devices/platform/thinkpad_acpi/leds"
for LED in platform::mute platform::micmute tpacpi::power; do
    echo 0 | sudo tee "$SYSFS_THINKPAD_LED/$LED/brightness"
done