-
-
Save drinchev/5662675 to your computer and use it in GitHub Desktop.
Disable the Window Shadow on Screen Shots in Mac OS X
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Disable MAC OS X screenshot ( Shift + Cmd + 4, Space ) shadow | |
# | |
# ref: http://osxdaily.com/2011/05/23/disable-shadow-screen-shots-mac/ | |
# | |
defaults write com.apple.screencapture disable-shadow -bool true | |
killall SystemUIServer | |
# To revert back to default use : | |
defaults write com.apple.screencapture disable-shadow -bool false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment