Skip to content

Instantly share code, notes, and snippets.

@juliusmh
Last active February 21, 2017 04:01
Show Gist options
  • Save juliusmh/c4ccb063fdf5df330aedbe49bed19883 to your computer and use it in GitHub Desktop.
Save juliusmh/c4ccb063fdf5df330aedbe49bed19883 to your computer and use it in GitHub Desktop.
modify the dock on Mac to be much more productive (autohide, no delay, short animation)
osascript -e 'tell application "System Events" to set the autohide of the dock preferences to true'; # Autohiding dock
defaults write com.apple.dock autohide-delay -float 0; # Autohiding delay 0ms
defaults write com.apple.dock autohide-time-modifier -float 0.2; # Animation time 200ms
killall Dock; # Restart dock application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment