MainspringGuides › Best Dock Settings
macOS Guide

The 10 Best Dock Settings Every Mac User Should Change

Updated July 2026 · 2 min read

The default Dock is built for demo screenshots: big, bouncy, and full of apps you'll never open. Ten deliberate changes turn it into something faster and calmer. The first six live in System Settings; the last four are hidden Terminal tweaks — each with its undo.

The basics: size, magnification, position (1–3)

All three live in System Settings → Desktop & Dock:

Declutter: recents, minimize behavior, indicators (4–6)

Speed: instant auto-hide (7)

7. Auto-hide buys back a strip of screen, but the default delay makes it feel laggy. Enable Automatically hide and show the Dock, then kill the lag in Terminal:

# show the hidden Dock instantly, with a faster slide
defaults write com.apple.dock autohide-delay -float 0
defaults write com.apple.dock autohide-time-modifier -float 0.4
killall Dock

# undo: restore Apple's default timing
defaults delete com.apple.dock autohide-delay
defaults delete com.apple.dock autohide-time-modifier
killall Dock

Hidden gems: three tweaks with no checkbox (8–10)

8. Dim hidden apps. Apps you've hidden with Cmd+H get translucent icons — you can finally see hidden-vs-running at a glance:

defaults write com.apple.dock showhidden -bool true
killall Dock

# undo
defaults delete com.apple.dock showhidden
killall Dock

9. Scroll to open. Scroll up on any Dock icon to spread its windows (App Exposé), or on a stack to pop it open:

defaults write com.apple.dock scroll-to-open -bool true
killall Dock

# undo
defaults delete com.apple.dock scroll-to-open
killall Dock

10. Instant-launch feedback without the bounce. If launch bouncing grates, stop it:

defaults write com.apple.dock launchanim -bool false
killall Dock

# undo
defaults delete com.apple.dock launchanim
killall Dock

All ten changes are freely reversible — the Settings toggles flip back, and every Terminal tweak above ships with its delete command. Try the full set for a week; most people keep eight or more.

All ten in one click

Every setting on this list is a labelled, reversible toggle in Mainspring — alongside 80 more across Finder, keyboard, privacy, and power. Flip, compare, keep what you like.

Try Mainspring free →

Signed & notarized by Apple · 1-day free trial · $29 once

Want the complete Terminal arsenal?

These ten are the curated picks. If you'd rather see everything the Dock's preference domain can do — pinning to corners, locking the size, showing only running apps — the full list is in 15 Terminal commands to customize the Dock.