Last active
February 25, 2022 09:50
-
-
Save kirschem/a43b4a0743876c4d14ef7590d7ab671e to your computer and use it in GitHub Desktop.
MacOS remove dock show/hide delay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Taken from https://howchoo.com/mac/make-the-dock-autohide-and-show-instantly-in-os-x | |
# Remove delay | |
defaults write com.apple.Dock autohide-delay -float 0.0001; killall Dock | |
# Restore default | |
defaults delete com.apple.Dock autohide-delay; killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment