Dans mon Thinkpad X22O fonctionnant sous Manjaro i3, la bouton de coupure du micro est
désactivée, car il n'est pas pris en charge par thinkpad-acpi.
Pour l'activer, voici ce que j'ai fait:
Premièrement, vérifier que l'acpi est installé:
sudo pacman -S acpi1) créer le fichier /etc/acpi/events/lenovo-mutemic
event=bouton/f20 action=/etc/acpi/lenovo-mutemic.sh
2) créez le fichier /etc/acpi/lenovo-mutemic.sh
#!/bin/bash INPUT_DEVICE=" 'Capture'" VOTRE_USERNAME="philip" if amixer sget $INPUT_DEVICE,0 | grep '\[on\]' ; then amixer sset $INPUT_DEVICE,0 toggle echo "0 blink" | sudo tee /proc/acpi/ibm/led DISPLAY=":0.0" notify-send -t 1000 -i microphone-sensibilité-muted-symbolic "Mic MUTED" else amixer sset $INPUT_DEVICE,0 toggle DISPLAY=":0.0" notify-send -t 1000 -i microphone-sensitivity-high-symbolic "Mic ON" echo "0 on" | sudo tee /proc/acpi/ibm/led fi
3) redémarrer acpi
systemctl restart acpid.service
Adapté de réponseAskubuntu.