Give every command a new line

This commit is contained in:
Christian Hoffmann 2015-10-20 09:08:51 +02:00
parent a8d1a09d06
commit 31d62ef017

View File

@ -948,7 +948,8 @@ sudo nvram boot-args=""
#### Save Screenshots to Given Location #### Save Screenshots to Given Location
Sets location to `~/Desktop`. Sets location to `~/Desktop`.
```bash ```bash
defaults write com.apple.screencapture location ~/Desktop && killall SystemUIServer defaults write com.apple.screencapture location ~/Desktop && \
killall SystemUIServer
``` ```
#### Save Screenshots in Given format #### Save Screenshots in Given format
@ -959,7 +960,8 @@ 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 && killall SystemUIServer defaults write com.apple.screencapture disable-shadow -bool true && \
killall SystemUIServer
``` ```
### Software Installation ### Software Installation