everyday mac tools

Turn off the floating screenshot thumbnail on a Mac

· 5 min read

Press Command-Shift-5, click Options, and uncheck Show Floating Thumbnail. Screenshots stop putting a preview in the bottom-right corner and are written to disk the moment you take them. The setting applies to every capture shortcut, and checking the box again brings the preview back.

What the thumbnail is doing

The preview that slides into the corner after a capture is not only a confirmation. While it is on screen, the screenshot has not been saved yet. macOS holds the image so that you can act on it before it becomes a file, and only writes it out when the preview goes away on its own after a few seconds.

That is the source of the complaint people usually cannot name: you take a screenshot, switch to Finder, and the file is not there. Wait a moment and it appears. Nothing is broken; the preview was still open.

While the preview is up, you can:

  • Click it to open the markup editor, where you can crop, annotate, rotate and then save or discard.
  • Drag it straight into a document, a chat window or an email. Drop it and no file is left behind in your screenshots folder.
  • Swipe it to the right with the trackpad or mouse to dismiss it early, which saves the file immediately.
  • Right-click it for a short menu: save to a different place, open it in an app, show it in Finder, or delete it.

If any of that matches how you work, keep the thumbnail. If you take fifteen screenshots in a row and want fifteen files, turn it off.

Turn it off

  1. Press Command-Shift-5.
  2. Click Options in the toolbar.
  3. Uncheck Show Floating Thumbnail.
  4. Press Escape.

The change is immediate and covers Command-Shift-3, Command-Shift-4, window capture and the recording modes as well. There is no per-shortcut version of this setting.

Take a capture to confirm: the shutter sound plays, nothing appears in the corner, and the file is in your screenshots folder before you can switch to Finder.

The Terminal equivalent

The checkbox writes a preference you can set directly, which is what you want when configuring a Mac from a script or a note.

defaults write com.apple.screencapture show-thumbnail -bool false; killall SystemUIServer

To bring the preview back, remove the key rather than setting it to true, so the value returns to the system default:

defaults delete com.apple.screencapture show-thumbnail; killall SystemUIServer

killall SystemUIServer restarts the process behind the menu bar so the change takes effect without a logout. The menu bar blinks once. If Terminal says the domain or default pair does not exist, the key was never set and the preview is already at its default state.

What you lose, plainly

Turning the thumbnail off removes real functionality, not just an animation.

No markup step. With the preview gone, annotating means opening the file afterward. Double-click it in Finder to open it in Preview, then use the markup toolbar (the pen icon) for arrows, boxes, text and the redaction tool. It is two more clicks, no more.

No drag-without-a-file. Dragging the preview into an app was the fastest way to attach a screenshot without leaving a copy behind. Without it, every capture becomes a file you may want to delete later.

No quick delete. The right-click Delete on the preview was a fast way to throw away a bad capture. Now they accumulate and you tidy the folder occasionally.

There is a middle path worth trying before you commit: leave the thumbnail on and get into the habit of swiping it away. The gesture takes a fraction of a second, dismisses the preview, writes the file at once, and keeps the markup and drag options for the times you want them.

The rest of the Options menu

The same panel holds two other settings that get changed at the same time, so it is worth knowing what they do while you are there.

Save to decides where the files go. The Desktop is the default and fills up quickly; changing where a Mac saves screenshots covers moving them somewhere sensible and the iCloud complication if your Desktop syncs.

Remember Last Selection keeps the crosshair region from your previous capture. If you take the same rectangle of the screen repeatedly (the same window, the same part of a spreadsheet), this saves real time. If every capture is different, it means dragging a new selection over an old one and is more nuisance than help.

There is also a Show Mouse Pointer option, off by default, which includes the cursor in captures and recordings. Turn it on when documenting something where the pointer position is part of the instruction.

The one screenshot annoyance that is not in this panel is the wide transparent shadow around window captures, which lives behind a modifier key and a separate preference: taking window screenshots without the shadow covers it.

If you would rather flip switches

Mainspring (https://trymainspring.com/) lists screenshot without the floating thumbnail as a power-up alongside the custom screenshot folder and the shadow setting, and bundles the three into a Screenshot Studio recipe that applies and reverts as a group. Each power-up is a real macOS setting, snapshotted before it changes so one click puts it back. It is $29 once for up to three Macs, with a one-day trial that includes everything and no account.

For this one checkbox, that is more machinery than the problem needs: Command-Shift-5 already has the switch and it takes seconds. The app earns its place when you are setting up a machine and want a dozen of these decided in one pass.

Questions

Can I turn off the screenshot sound as well? The shutter sound follows the alert volume in System Settings, Sound. Set Alert volume to zero and screenshots become silent, along with other system alerts. Holding Shift while taking a capture does not silence it; that modifier does other things.

The thumbnail is off but files still take a moment to appear. That is usually a folder that syncs. If your screenshots go to the Desktop and Desktop syncing is on in iCloud Drive, the file exists locally straight away but Finder may show a sync badge for a while. Moving screenshots out of the synced folders removes the delay.

Does this affect the markup editor everywhere else? No. Markup in Preview, Mail and Quick Look is unaffected. The only thing that changes is whether a capture offers you the editor automatically before saving.

I turned it off and now I miss it. Where was the checkbox again? Command-Shift-5, Options, Show Floating Thumbnail. If you set it in Terminal instead, defaults delete com.apple.screencapture show-thumbnail; killall SystemUIServer restores it.