Skip to content

Instantly share code, notes, and snippets.

@justinhartman
Last active March 2, 2018 17:18
Show Gist options
  • Save justinhartman/b010c186e67b42d6967d4be319836d6e to your computer and use it in GitHub Desktop.
Save justinhartman/b010c186e67b42d6967d4be319836d6e to your computer and use it in GitHub Desktop.
Change the Default Save Location of Screenshots in Mac OS X

Change the Default Save Location of Screenshots in Mac OS X

This is how you change the default save location of screenshots to anywhere you want in Mac OS X.

Create a New Folder

Choose a location, like the Downloads folder and create a folder called Screenshots (or whatever you'd like) where your screenshots will now be saved. In this example I created a folder called Screenshots in my Downloads folder. You will need the path to this folder in the next step so remember what it is. My path to the folder is ~/Downloads/Screenshots; you don't need the full path and the tilda (~) represents the symbolic link to my home folder - i.e. /Users/macbookpro/ or /Users/your_name/.

Setting the New Location

Open up your Terminal application found in /Applications/Utilities/Terminal.app and enter the following command.

$ defaults write com.apple.screencapture location ~/Downloads/Screenshots

Remember to change the location to your new Screenshots folder you created in the above step, replacing ~/Downloads/Screenshots with your location.

$ killall SystemUIServer

Run the above command in Terminal to restart the user interface server which, once done, will store all screenshots in your new path location.

Setting the New Location

Credits

With thanks to Nelson Aguilar of Gadget Hacks for this useful howto.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment