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