mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
# Conflicts: # bin/omarchy-hyprland-monitor-watch # bin/omarchy-plymouth-reset # bin/omarchy-sudo-passwordless
12 lines
327 B
Bash
Executable File
12 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=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
|