Skip the Floating Screenshot Thumbnail on Mac
Every time you take a screenshot, macOS drops a small preview into the bottom-right corner and holds the file there for about five seconds before it writes anything to disk. If you take a shot and immediately open the Screenshots folder to grab the file, it isn't there yet. Turn the floating thumbnail off and each capture lands on disk the instant you release the mouse — no waiting, no corner to click away.
Why the file "isn't there yet"
The floating thumbnail isn't just a preview — it's a live handle on a screenshot that hasn't been saved. While it sits in the corner, the PNG exists only in memory. macOS commits it to your save location once one of three things happens: the thumbnail fades on its own (roughly five seconds), you click it, or you swipe it off the edge of the screen. That's why a fresh capture doesn't appear in Finder or your cloud-sync folder until the preview disappears.
If you actually use the thumbnail — dragging it into a Mail draft, or clicking it to mark it up — that hand-off is useful. But if your habit is "shoot, then go find the file," the preview is pure delay. Switching it off makes the older, simpler behavior return: the file is written the moment the capture completes.
Turn it off from the Screenshot toolbar
- Press Shift+Cmd+5 to open the capture toolbar along the bottom of the screen.
- Click Options.
- Under the list, uncheck Show Floating Thumbnail.
That's it — the setting sticks for every capture shortcut, including Shift+Cmd+3 and Shift+Cmd+4, not just the Shift+Cmd+5 toolbar. It works identically on macOS 13 Ventura, 14 Sonoma, and 15 Sequoia. To bring the preview back, reopen Options and tick the box again.
Turn it off in Terminal
The same preference has a defaults key, handy if you're scripting a fresh Mac setup:
# Save screenshots straight to disk, no floating preview
defaults write com.apple.screencapture show-thumbnail -bool false
killall SystemUIServer
The killall SystemUIServer line restarts the process that draws the screenshot UI so the change takes effect right away. To restore the thumbnail:
# Bring the floating preview back
defaults write com.apple.screencapture show-thumbnail -bool true
killall SystemUIServer
What you keep when it's gone
Turning the thumbnail off costs you nothing structural. Screenshots still save to the same folder, still use the same file format, and Markup is still one Quick Look tap away — you just open the saved file instead of catching the corner preview. If speed to the file is what you're after, this one setting removes the whole five-second gap.
Mainspring turns the floating-thumbnail preference into a single labelled toggle you can flip on or off in a click — one of 90+ hidden macOS settings it makes safe and reversible, no defaults syntax required.
Signed & notarized by Apple · 1-day free trial · $29 once
Where those files actually go
With the preview gone, you'll be opening the saved file directly more often — so it's worth knowing exactly where it lands. See how to change the screenshot save location on Mac to point captures at a folder you can reach faster than the desktop.