Merge pull request #14 from hffmnn/feature/screenshots
Add commands to change screenshot location, type and shadow
This commit is contained in:
commit
9fd19f700c
22
README.md
22
README.md
@ -76,6 +76,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)
|
||||||
- [Software Update](#software-update)
|
- [Software Update](#software-update)
|
||||||
- [Spotlight](#spotlight)
|
- [Spotlight](#spotlight)
|
||||||
@ -1069,6 +1070,27 @@ sudo nvram boot-args="-x"
|
|||||||
sudo nvram boot-args=""
|
sudo nvram boot-args=""
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Screenshots
|
||||||
|
|
||||||
|
#### Save Screenshots to Given Location
|
||||||
|
Sets location to `~/Desktop`.
|
||||||
|
```bash
|
||||||
|
defaults write com.apple.screencapture location ~/Desktop && \
|
||||||
|
killall SystemUIServer
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Save Screenshots in Given Format
|
||||||
|
Sets format to `png`. Other options are `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