Add smooth scrolling commands

This commit is contained in:
Marcel Bischoff 2015-10-17 19:13:16 +02:00
parent f1bf85299f
commit 83cfff91a1

View File

@ -279,6 +279,18 @@ chflags nohidden ~/Library
### Layout ### Layout
#### Disable Smooth Scrolling
Useful if youre on an older Mac that messes up the animation.
```bash
defaults write NSGlobalDomain NSScrollAnimationEnabled -bool false
```
#### Enable Smooth Scrolling
Revert back to standard behavior.
```bash
defaults write NSGlobalDomain NSScrollAnimationEnabled -bool true
```
#### Hide All Desktop Icons #### Hide All Desktop Icons
```bash ```bash
defaults write com.apple.finder CreateDesktop -bool false && killall Finder defaults write com.apple.finder CreateDesktop -bool false && killall Finder