From 83cfff91a14e66c87732949e301447c91384eb93 Mon Sep 17 00:00:00 2001 From: Marcel Bischoff Date: Sat, 17 Oct 2015 19:13:16 +0200 Subject: [PATCH] Add smooth scrolling commands --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index ce557d5..6bcc9a7 100644 --- a/README.md +++ b/README.md @@ -279,6 +279,18 @@ chflags nohidden ~/Library ### Layout +#### Disable Smooth Scrolling +Useful if you’re 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 ```bash defaults write com.apple.finder CreateDesktop -bool false && killall Finder