Skip to content

Instantly share code, notes, and snippets.

@henrik242
Last active May 20, 2025 10:34
Show Gist options
  • Save henrik242/1c5010734d6993123d276c3e4d07852f to your computer and use it in GitHub Desktop.
Save henrik242/1c5010734d6993123d276c3e4d07852f to your computer and use it in GitHub Desktop.
  1. Open Automator.app
  2. Create new Quick Action
  3. Select Run AppleScript
  4. Add this:
set inputVolume to input volume of (get volume settings)
if inputVolume = 0 then
	set inputVolume to 100
	display notification "Volume set to 100" with title "✅ Microphone is on"
else
	set inputVolume to 0
	display notification "Volume set to 0" with title "❌ Microphone is off"
end if
set volume input volume inputVolume
  1. Save as mute-microphone
  2. Go to System Preferences -> Keyboard -> Shortcuts -> Services -> General
  3. Find the mute-microphone service and set the hotkey (e.g. control-cmd-option M)
@lsn03
Copy link

lsn03 commented Apr 30, 2025

Still work on Sequoia 15.1

@sanderlegit
Copy link

I added a ding!
Inspired by the mute unmute ding meets / some headphones have.

if input volume of (get volume settings) = 0 then
	set volume input volume 100
	do shell script "afplay /System/Library/Sounds/Morse.aiff"
else
	set volume input volume 0 without output muted
	do shell script "afplay /System/Library/Sounds/Ping.aiff"
end if

Sequoia 15.1 (24B2082)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment