This is nothing more than a reminder to myself on how to turn off the drop shadow that macOS always wants to add to screen shots. I keep forgetting how to do this when I upgrade to a new version of macOS. 1
-
Open terminal and enter the following command:
defaults write com.apple.screencapture disable-shadow -bool true
-
Next you need to refresh the system UI to stop adding the drop shadow:
killall SystemUIServer
-
Now using Cmd-Shift-4-Spacebar to capture a full window, the captured image will not have the drop shadow captured.
To turn the drop shadow back on, run
defaults write com.apple.screencapture disable-shadow -bool true
-
It's like I should create a check list or something. 🤣 ↩