mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
12 lines
311 B
Bash
Executable File
12 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Toggle microphone mute. Dell XPS and ThinkPad systems get special handling for the hardware LED.
|
|
|
|
if omarchy-hw-match "XPS"; then
|
|
omarchy-audio-input-mute-xps
|
|
elif omarchy-hw-match "ThinkPad"; then
|
|
omarchy-audio-input-mute-thinkpad
|
|
else
|
|
omarchy-swayosd-client --input-volume mute-toggle
|
|
fi
|