1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add Default Screenshot Location as a mac til.

This commit is contained in:
jbranchaud
2015-09-17 21:46:33 -05:00
parent 20a0eefb09
commit f6f83bc8d5
2 changed files with 18 additions and 0 deletions

View File

@@ -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)

View File

@@ -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/)