• Mac OS X

    Disable Shadows On Mac OS X Screenshots

    Screenshot formats, locations and styles are controlled by the com.apple.screencapture defaults domain. This time of the year (or OS Release Cycle) I am doing a lot of screenshots. And while I love the way they look with drop shadows, no one else does. So I find myself frequently disabling those drop shadows. To do so: defaults write com.apple.screencapture disable-shadow -bool true Then reboot or killall SystemUIServer: killall SystemUIServer To get them back: defaults write com.apple.screencapture disable-shadow -bool false ; killall SystemUIServer

  • Mac OS X

    Changing the Screenshot Location in OS X

    Each user in Mac OS X can customize the location that their screenshots (aka screencaptures) will go. To do so you would edit the com.apple.screencapture property list, customizing the location key. You can easily edit this file using the defaults command. For example, if we wanted to set the location to go to a folder called screenshots in the home directory of a user we could use the following command: defaults write com.apple.screencapture location ~/screenshots You can also change the default type of screenshot which I cover here https://krypted.com//mac-os-x/mac-os-x-changing-the-default-screen-shot-format.