高议而不可及
不如卑论之有功也
Some people dream of success,
while other people get up every morning and make it happen.
Thinkpad: Turnoff the mic mute, sound mute and power button LEDs
Feb 28, 2020
1 min read
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