Created
August 2, 2016 02:18
-
-
Save NicholasTD07/465a6dc84c5f5ebaa4336e276f94026d to your computer and use it in GitHub Desktop.
Dock icons, STOP BOUNCING ALL DAY!
This file contains 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
#!/bin/sh | |
main() { | |
no_bouncing_dock_icons | |
} | |
no_bouncing_dock_icons() { | |
defaults write com.apple.dock no-bouncing -bool TRUE | |
killall Dock | |
} | |
main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment