Skip to content

Instantly share code, notes, and snippets.

View cometofsky's full-sized avatar
🤐

Faozul Azim cometofsky

🤐
View GitHub Profile
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;