Why Mac screenshots make a sound

Every time you press Cmd+Shift+3 or Cmd+Shift+4, macOS plays a camera shutter sound effect. It's audio confirmation that the capture happened — the same way iOS plays a shutter sound when you take a photo.

The problem is that macOS doesn't give you a dedicated toggle for this sound. There's no checkbox in System Settings that says "Mute screenshot sound." The shutter effect is bundled with all UI sound effects, so silencing it means understanding exactly which setting controls it — or using an alternative capture method.

If you take screenshots frequently — during meetings, while recording your screen, or in a quiet office — the constant clicking gets old fast. Here are five ways to stop it.

Method 1: Mute your Mac before capturing

The fastest fix: press the mute key (F10 or the speaker icon on Touch Bar) before you take a screenshot.

  1. Press F10 (or the mute button) to silence your Mac
  2. Take your screenshot with Cmd+Shift+3 or Cmd+Shift+4
  3. Press F10 again to unmute when you're done

This works instantly and requires no configuration. The downside is obvious: you have to remember to mute and unmute every time, and you won't hear notifications, music, or alerts while muted.

Use volume-down instead

If muting is too aggressive, press F11 (volume down) repeatedly until the volume bar shows the muted speaker icon. The screenshot sound only plays when system volume is above zero. You can also hold Option+Shift while pressing volume keys to adjust in quarter-increments for finer control.

Method 2: Disable UI sound effects in System Settings

macOS groups the screenshot sound with other interface sounds (Trash emptying, file dragging, alert pings). You can disable all of them at once:

  1. Open System Settings (or System Preferences on older macOS)
  2. Click Sound
  3. Under the Sound Effects tab, uncheck "Play user interface sound effects"

This permanently silences the screenshot shutter along with other system sounds. Alert dialogs will still show visually — they just won't play audio cues. Notification sounds from apps (Messages, Slack, Calendar) use a separate setting and are not affected.

What you lose

Disabling UI sound effects also silences:

  • The Trash emptying sound
  • The "move to folder" sound when dragging files
  • The volume adjustment click
  • Error alert beeps

If you rely on any of these audio cues, this method trades one annoyance for several missing sounds. For most people who work with headphones off, the tradeoff is fine.

Method 3: Use the Terminal screencapture -x flag

The screencapture command in Terminal has a -x flag that suppresses the sound on a per-capture basis. This is the surgical option — no system settings change, no muting, just a silent screenshot.

# Silent full-screen screenshot
screencapture -x ~/Desktop/screenshot.png

# Silent interactive region selection
screencapture -ix ~/Desktop/screenshot.png

# Silent capture to clipboard (no file saved)
screencapture -xc

The -x flag can be combined with any other screencapture flags:

Flag combo Behavior
-x Silent full-screen capture to file
-ix Silent interactive region/window selection
-xc Silent capture to clipboard
-ixc Silent interactive selection to clipboard
-xw Silent window capture

Create a keyboard shortcut for silent screenshots

You can bind a silent screenshot command to a custom keyboard shortcut using macOS Automator or Shortcuts:

  1. Open Automator and create a new Quick Action
  2. Add a Run Shell Script action
  3. Enter: screencapture -ixc
  4. Save with a descriptive name like "Silent Screenshot"
  5. Go to System Settings > Keyboard > Keyboard Shortcuts > Services
  6. Find your Quick Action and assign a shortcut (e.g., Ctrl+Shift+4)

Now you have a dedicated keyboard shortcut that captures silently without changing any system-wide sound settings.

LazyScreenshots captures silently by default — no shutter sound, no configuration. Just capture, annotate, and share.

Try LazyScreenshots Free

Method 4: Use a macOS Shortcut for silent capture

The Shortcuts app (built into macOS Monterey and later) can create a one-tap silent screenshot workflow without touching Terminal.

  1. Open the Shortcuts app
  2. Click + to create a new shortcut
  3. Add the "Take Screenshot" action
  4. Set it to Interactive (lets you select a region) or Full Screen
  5. Add a "Save File" action to choose where the image goes
  6. Name the shortcut (e.g., "Silent Screenshot")
  7. Assign a keyboard shortcut in the shortcut's settings

The Shortcuts "Take Screenshot" action doesn't play the shutter sound. It bypasses the normal screenshot pipeline and captures silently. You can also add processing steps to the shortcut — like resizing, converting to JPG, or copying to clipboard — all without any audio.

Method 5: Use a third-party screenshot tool

Most third-party screenshot apps for Mac have their own sound settings, separate from macOS. This means they can capture silently regardless of your system sound configuration.

App Silent by default? Sound toggle?
LazyScreenshots Yes Yes
CleanShot X No Yes (in preferences)
Shottr Yes N/A
Snagit No Yes (in preferences)
Xnapper Yes N/A

Using a third-party tool is the most permanent solution. You replace the built-in screenshot shortcuts entirely, so the macOS shutter sound never plays. You also get features like annotation, cloud sharing, and better file management that the built-in tool doesn't offer.

Quick reference: which method to use

Situation Best method Tradeoff
One-off silent screenshot Mute key (F10) Must remember to unmute
Always-silent, no other sound changes Terminal -x flag or Shortcut Requires custom shortcut setup
Don't need any UI sounds System Settings toggle Loses all UI sound effects
Frequent screenshots, want full control Third-party app May cost money

Bonus: Mute the sound during screen recordings

If you're recording your screen while taking screenshots, the shutter sound gets captured in the recording audio. This is especially annoying for tutorial videos and demo recordings.

The fix depends on your recording setup:

  • Recording system audio: Mute before screenshotting (Method 1) or use Terminal -x (Method 3)
  • Recording microphone only: The shutter sound still plays through speakers but won't appear in the recording unless your mic picks it up
  • Recording both: Use a third-party screenshot tool (Method 5) that captures silently, or disable UI sounds (Method 2) before starting the recording

For the cleanest recording workflow, use a dedicated screenshot tool that doesn't play any sound. This eliminates the problem entirely regardless of your audio recording configuration.

Does the sound setting persist after macOS updates?

The System Settings toggle (Method 2) survives minor macOS updates and restarts. It's stored in your user preferences and carries forward reliably.

Custom Automator actions and Shortcuts (Methods 3 and 4) also persist through updates since they're saved in your user account.

The only scenario where your silent screenshot setup might break is a major macOS upgrade (e.g., Sonoma to Tahoe) that resets sound preferences. After a major upgrade, check System Settings > Sound to verify your UI sound effects toggle is still off.