Add commands to change screenshot location, type and shadow
This commit is contained in:
parent
44b87ebfed
commit
f63bc56d2a
18
README.md
18
README.md
@ -74,6 +74,7 @@ If you want to contribute, you are highly encouraged to do so. Please read the [
|
|||||||
- [QuickLook](#quicklook)
|
- [QuickLook](#quicklook)
|
||||||
- [Root User](#root-user)
|
- [Root User](#root-user)
|
||||||
- [Safe Mode Boot](#safe-mode-boot)
|
- [Safe Mode Boot](#safe-mode-boot)
|
||||||
|
- [Screenshots](#screenshots)
|
||||||
- [Software Installation](#software-installation)
|
- [Software Installation](#software-installation)
|
||||||
- [Spotlight](#spotlight)
|
- [Spotlight](#spotlight)
|
||||||
- [Terminal](#terminal)
|
- [Terminal](#terminal)
|
||||||
@ -942,6 +943,23 @@ sudo nvram boot-args="-x"
|
|||||||
sudo nvram boot-args=""
|
sudo nvram boot-args=""
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Screenshots
|
||||||
|
|
||||||
|
#### Save screenshots to the desktop
|
||||||
|
```bash
|
||||||
|
defaults write com.apple.screencapture location ~/Desktop && killall SystemUIServer
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Save screenshots in png format (other options: bmp, gif, jpg, jpeg, pdf, tiff)
|
||||||
|
```bash
|
||||||
|
defaults write com.apple.screencapture type -string "png"
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Disable shadow in screenshots
|
||||||
|
```bash
|
||||||
|
defaults write com.apple.screencapture disable-shadow -bool true && killall SystemUIServer
|
||||||
|
```
|
||||||
|
|
||||||
### Software Installation
|
### Software Installation
|
||||||
|
|
||||||
#### Install PKG
|
#### Install PKG
|
||||||
|
Loading…
Reference in New Issue
Block a user