Add command to set default Finder location

This commit is contained in:
Marcel Bischoff 2015-10-18 18:56:58 +02:00
parent f9f386a291
commit fd0e8204c2

View File

@ -367,6 +367,12 @@ Sets default save target to be a local disk, not iCloud.
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false
```
#### Set Default Finder Location to Home Folder
```bash
defaults write com.apple.finder NewWindowTarget -string "PfLo" && \
defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}"
```
#### Set Sidebar Icon Size
Sets size to 'medium'.
```bash