Fix capitalization

This commit is contained in:
Christian Hoffmann 2015-10-22 18:54:30 +02:00
parent 31d62ef017
commit 682b90421a

View File

@ -952,13 +952,13 @@ defaults write com.apple.screencapture location ~/Desktop && \
killall SystemUIServer killall SystemUIServer
``` ```
#### Save Screenshots in Given format #### Save Screenshots in Given Format
Sets format to `png`. Other options are `bmp`, `gif`, `jpg`, `jpeg`, `pdf`, `tiff`. Sets format to `png`. Other options are `bmp`, `gif`, `jpg`, `jpeg`, `pdf`, `tiff`.
```bash ```bash
defaults write com.apple.screencapture type -string "png" defaults write com.apple.screencapture type -string "png"
``` ```
#### Disable shadow in Screenshots #### Disable Shadow in Screenshots
```bash ```bash
defaults write com.apple.screencapture disable-shadow -bool true && \ defaults write com.apple.screencapture disable-shadow -bool true && \
killall SystemUIServer killall SystemUIServer