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:
@@ -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)
|
||||
|
||||
14
mac/default-screenshot-location.md
Normal file
14
mac/default-screenshot-location.md
Normal 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/)
|
||||
Reference in New Issue
Block a user