* If on XPS, enable XPS mute mic key with LED and fallback to original mic mute flow * fix hardcode of alsa card 0 to resolved id * Extract omarchy-hyprland-monitor-focused * Extract dedicated xps mute script --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
10 lines
259 B
Bash
Executable File
10 lines
259 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
|
|
swayosd-client --monitor "$(omarchy-hyprland-monitor-focused)" --input-volume mute-toggle
|
|
fi
|