Created
February 28, 2026 09:19
-
-
Save m0zgen/085f42ada013efbcb59f43fc47b46d99 to your computer and use it in GitHub Desktop.
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
| # Disable macOS effects | |
| # Speedup tooltips (default 1000) | |
| `defaults write -g NSInitialToolTipDelay -int 100` | |
| # Disable Finder animations | |
| # Opening Finder windows | |
| `defaults write com.apple.finder DisableAllAnimations -bool true` | |
| # "Properties" (Cmd+I) | |
| `defaults write com.apple.finder AnimateInfoPanes -bool false` | |
| # Window resize | |
| `defaults write NSGlobalDomain NSWindowResizeTime -float 0.001` | |
| # Quick Look | |
| `defaults write -g QLPanelAnimationDuration -float 0` | |
| # Restart Finder | |
| `killall Finder` | |
| # Speedup Dock | |
| ```shell | |
| efaults write com.apple.dock expose-animation-duration -float 0.1; | |
| defaults write com.apple.dock "show-process-indicators" -bool true; | |
| killall Dock | |
| ``` | |
| or more: | |
| ```shell | |
| defaults write com.apple.dock expose-animation-duration -float 0.1; | |
| defaults write com.apple.dock autohide-delay -float 0; | |
| defaults write com.apple.dock autohide-time-modifier -float 0; | |
| killall Dock | |
| ``` | |
| # Disable Window animations | |
| `defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false` | |
| # Disable scrollbars animations | |
| `defaults write NSGlobalDomain NSScrollAnimationEnabled -bool false` | |
| # Disable Siri service | |
| `launchctl unload -w /System/Library/LaunchAgents/com.apple.siri.plist 2>/dev/null` | |
| # Disable Spotlight | |
| `sudo mdutil -a -i off` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment