A simple macOS menu bar app that mutes/unmutes all microphones system-wide.
- Menu bar icon: Shows mic status (🎤 active / 🎤🚫 muted)
- Global hotkey:
⌘⇧M(Cmd+Shift+M) to toggle mute from anywhere - All microphones: Mutes built-in, USB, and external mics (including Sennheiser Profile, webcams, etc.)
- System-level: Works as an override for video calls (Google Meet, Teams, Zoom)
swift build -c release
.build/release/MacMicMuteopen "Mac Mic Mute.app"cp -r "Mac Mic Mute.app" /Applications/The app may require Accessibility permissions for global hotkey support:
- System Preferences → Security & Privacy → Privacy → Accessibility
- Add the app to the list
swift build -c releaseUses CoreAudio APIs to:
- Enumerate all audio input devices
- Toggle hardware mute if supported
- Fall back to setting volume to 0 for devices without hardware mute
The app runs as a menu bar-only app (no dock icon) with LSUIElement set to true.