Skip to Content
macOSDock Customisation

Dock Customisation

Customise the macOS Dock auto-hide animation behaviour.

Remove auto-hide delay

Makes the Dock appear instantly when you move to the edge:

defaults write com.apple.dock autohide-delay -float 0; killall Dock

Set auto-hide animation speed

Controls how fast the Dock slides in/out (0.5 seconds in this example):

defaults write com.apple.dock autohide-time-modifier -float 0.5; killall Dock

Reset to defaults

defaults delete com.apple.dock autohide-delay; killall Dock defaults delete com.apple.dock autohide-time-modifier; killall Dock
Last updated on