Rework Finder category

This commit is contained in:
Marcel Bischoff 2015-12-04 01:20:38 +01:00
parent c57f349153
commit 96f5f8d607

View File

@ -418,13 +418,12 @@ chflags hidden /path/to/folder/
defaults write NSGlobalDomain AppleShowAllExtensions -bool true defaults write NSGlobalDomain AppleShowAllExtensions -bool true
``` ```
#### Show All Hidden Files #### Show Hidden Files
```bash ```bash
# Show All
defaults write com.apple.finder AppleShowAllFiles true defaults write com.apple.finder AppleShowAllFiles true
```
#### Restore Default File Visibility # Restore Default File Visibility
```bash
defaults write com.apple.finder AppleShowAllFiles false defaults write com.apple.finder AppleShowAllFiles false
``` ```
@ -451,26 +450,22 @@ killall Finder
### Layout ### Layout
#### Disable Smooth Scrolling #### Smooth Scrolling
Useful if youre on an older Mac that messes up the animation. Useful if youre on an older Mac that messes up the animation.
```bash ```bash
# Disable
defaults write NSGlobalDomain NSScrollAnimationEnabled -bool false defaults write NSGlobalDomain NSScrollAnimationEnabled -bool false
```
#### Enable Smooth Scrolling # Enable (Default)
Revert back to standard behavior.
```bash
defaults write NSGlobalDomain NSScrollAnimationEnabled -bool true defaults write NSGlobalDomain NSScrollAnimationEnabled -bool true
``` ```
#### Disable Rubberband Scrolling #### Rubberband Scrolling
```bash ```bash
# Disable
defaults write -g NSScrollViewRubberbanding -bool false defaults write -g NSScrollViewRubberbanding -bool false
```
#### Enable Rubberband Scrolling # Enable (Default)
Revert to default behavior.
```bash
defaults write -g NSScrollViewRubberbanding -bool true defaults write -g NSScrollViewRubberbanding -bool true
``` ```
@ -480,19 +475,24 @@ defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true && \
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
``` ```
#### Hide All Desktop Icons #### Desktop Icon Visibility
```bash ```bash
defaults write com.apple.finder CreateDesktop -bool false && killall Finder # Hide Icons
defaults write com.apple.finder CreateDesktop -bool false && \
killall Finder
# Show Icons (Default)
defaults write com.apple.finder CreateDesktop -bool true && \
killall Finder
``` ```
#### Show All Desktop Icons #### Path Bar
```bash
defaults write com.apple.finder CreateDesktop -bool true && killall Finder
```
#### Show Path Bar
```bash ```bash
# Show
defaults write com.apple.finder ShowPathbar -bool true defaults write com.apple.finder ShowPathbar -bool true
# Hide (Default)
defaults write com.apple.finder ShowPathbar -bool false
``` ```
#### Scrollbar Visibility #### Scrollbar Visibility
@ -501,9 +501,13 @@ Possible values: `WhenScrolling`, `Automatic` and `Always`.
defaults write NSGlobalDomain AppleShowScrollBars -string "Always" defaults write NSGlobalDomain AppleShowScrollBars -string "Always"
``` ```
#### Show Status Bar #### Status Bar
```bash ```bash
# Show
defaults write com.apple.finder ShowStatusBar -bool true defaults write com.apple.finder ShowStatusBar -bool true
# Hide (Default)
defaults write com.apple.finder ShowStatusBar -bool false
``` ```
#### Save to Disk by Default #### Save to Disk by Default
@ -528,6 +532,7 @@ Sets size to 'medium'.
```bash ```bash
defaults write NSGlobalDomain NSTableViewDefaultSizeMode -int 2 defaults write NSGlobalDomain NSTableViewDefaultSizeMode -int 2
``` ```
### Metadata Files ### Metadata Files
#### Disable Creation of Metadata Files on Network Volumes #### Disable Creation of Metadata Files on Network Volumes