Last active
October 19, 2019 19:21
-
-
Save oboje/621f0a395edfb9033b3f5f057476aa1f to your computer and use it in GitHub Desktop.
macOS Sys Tweaks
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
| #!/bin/bash | |
| #advance speed of notifications | |
| defaults write com.apple.notificationcenterui bannerTime 1.0 | |
| #Don’t animate opening applications from the Dock | |
| defaults write com.apple.dock launchanim -bool false | |
| #Speed up Mission Control animations | |
| defaults write com.apple.dock expose-animation-duration -float 0.1 | |
| #Remove the auto-hiding Dock delay | |
| defaults write com.apple.dock autohide-delay -float 0 | |
| #Remove the animation when hiding/showing the Dock | |
| defaults write com.apple.dock autohide-time-modifier -float 0 | |
| #Increase window resize speed for Cocoa applications | |
| defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
| #Xcode: | |
| #Compilation time show | |
| defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool YES | |
| #Reload Dock | |
| killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment