#!/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
