Files
omarchycn/bin/omarchy-cmd-mic-mute
T
David Heinemeier Hansson edf7067797 Extract omarchy-swayosd-client
So we don't have to manually compose it every time
2026-04-22 13:04:30 +02:00

10 lines
219 B
Bash
Executable File

#!/bin/bash
# Toggle microphone mute. Dell XPS systems get special handling for the hardware LED.
if omarchy-hw-match "XPS"; then
omarchy-cmd-mic-mute-xps
else
omarchy-swayosd-client --input-volume mute-toggle
fi