Capture whole app windows with their rounded corners intact but without the automatic drop shadow.
When you want a shadowless capture just this once, without changing any settings:
Cmd + Shift + 4Space — the cursor turns into a camera iconYou get the window with its rounded corners, but no drop shadow. Release Option for the default (shadowed) behavior.
If you never want shadows, set the system default so you don't have to hold Option every time.
Open Terminal and run:
defaults write com.apple.screencapture disable-shadow -bool true
killall SystemUIServer
From now on, every window screenshot (Cmd + Shift + 4 then Space then click) will be shadowless automatically.
To bring shadows back:
defaults write com.apple.screencapture disable-shadow -bool false
killall SystemUIServer
You can also remove the key entirely to return to the system default:
defaults delete com.apple.screencapture disable-shadow
killall SystemUIServer
| Goal | Method |
|---|---|
| One-off shadowless capture | Cmd + Shift + 4 → Space → Option + click |
| Always shadowless | defaults write com.apple.screencapture disable-shadow -bool true + killall SystemUIServer |
| Restore shadows | defaults write com.apple.screencapture disable-shadow -bool false + killall SystemUIServer |
| Reset to default | defaults delete com.apple.screencapture disable-shadow + killall SystemUIServer |
com.apple.screencapture apply to all screenshot tools that use the system capture API, not just the keyboard shortcut.killall SystemUIServer applies the change immediately.Last updated: 03-06-2026 at 23:30