diff --git a/README.md b/README.md index bd8b525..8566ded 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,10 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Throttling A Function Call](javascript/throttling-a-function-call.md) - [Truthiness of Integer Arrays](javascript/truthiness-of-integer-arrays.md) +### mac + +- [Default Screenshot Location](mac/default-screenshot-location.md) + ### postgres - [Auto Expanded Display](postgres/auto-expanded-display.md) diff --git a/mac/default-screenshot-location.md b/mac/default-screenshot-location.md new file mode 100644 index 0000000..8959e86 --- /dev/null +++ b/mac/default-screenshot-location.md @@ -0,0 +1,14 @@ +# Default Screenshot Location + +By default, Mac saves all screenshots to the desktop. If you'd like +screenshots to be dumped somewhere else, you have to configure it manually +from the command line. For instance, if you'd like your screenshots to be +saved in the `~/screenshots` directory, then enter the following commands: + +```bash +$ mkdir ~/screenshots +$ defaults write com.apple.screencapture location ~/screenshots +$ killall SystemUIServer +``` + +[source](http://osxdaily.com/2011/01/26/change-the-screenshot-save-file-location-in-mac-os-x/)