Last active
February 21, 2017 04:01
-
-
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)
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
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