#Display thumbnail
Choose whether to display a thumbnail after taking a screenshot.
- Tested on macOS:
- Big Sur
- Catalina
- Mojave
- Parameter type: bool
#Set totrue
(default value)
defaults write com.apple.screencapture show-thumbnail -bool true
- Display the thumbnail after taking a screenshot
#Set tofalse
defaults write com.apple.screencapture show-thumbnail -bool false
- Do not display the thumbnail
#Read current value
defaults read com.apple.screencapture show-thumbnail
#Delete current value
defaults delete com.apple.screencapture show-thumbnail