Skip to content

Instantly share code, notes, and snippets.

@kumarvv
Created August 27, 2019 17:54
Show Gist options
  • Save kumarvv/4ad5d91e9fd518dc1331698fb2d552f9 to your computer and use it in GitHub Desktop.
Save kumarvv/4ad5d91e9fd518dc1331698fb2d552f9 to your computer and use it in GitHub Desktop.
Auto hide delay tweaking
Enter this into Terminal to make the Dock show without a delay :
`defaults write com.apple.dock autohide-delay -float 0; killall Dock;`
Maybe you want to have a long delay (5 seconds) so that you never accidentally trigger the Dock:
defaults write com.apple.dock autohide-delay -float 5; killall Dock;
To restore defaults:
defaults delete com.apple.dock autohide-delay; killall Dock;
Animation speed tweaking
Enter this into Terminal to make the Dock show without animations :
defaults write com.apple.dock autohide-time-modifier -float 0; killall Dock;
It's still nice to have a short animation (0.2 seconds) and this line makes it possible:
defaults write com.apple.dock autohide-time-modifier -float 0.2; killall Dock;
To restore defaults:
defaults delete com.apple.dock autohide-time-modifier; killall Dock;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment