Created
February 9, 2016 18:15
-
-
Save yacine/866d336c73351200bb45 to your computer and use it in GitHub Desktop.
Change OS X's Default Screenshot Format and Location
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
# Change format | |
defaults write com.apple.screencapture type jpg | |
# Change default location | |
mkdir ~/Pictures/Screenshots/ | |
defaults write com.apple.screencapture location ~/Pictures/Screenshots/ | |
killall SystemUIServer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment