7

I can mute and unmute the microphone just fine, but the white light on the mic mute button (F4) is on at all times. How can I make it respond to the muted/unmuted state of the microphone, or even just turn it off completely? It's very bright.

1 Answers1

4

I am using ThinkPad P14s AMD, following works if you want to manually change it.

You can test to see if it works for you:

echo 1 | sudo tee /sys/class/leds/platform\:\:micmute/brightness

to turn it on, and

echo 0 | sudo tee /sys/class/leds/platform\:\:micmute/brightness

to turn it off.

Aditya T
  • 154