* Add omarchy CLI * Remove outdated or internal * Add bash completions for command * Add omarchy command documentation * Add missing docs * Correct to what's now right * Fix tests --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
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
|