Last active
June 8, 2024 18:02
-
-
Save olssonm/87e0d72b1ef80fffb6f5a1fba1d17ea1 to your computer and use it in GitHub Desktop.
Disable resizing of the macOS dock
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
defaults write com.apple.dock size-immutable -bool true; killall Dock |
update for 2020:
defaults write com.apple.dock size-immutable -bool true; killall Dock
how do I undo this
@Supaflowin
defaults write com.apple.dock size-immutable -bool false; killall Dock
OMG THANK YOU
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another useful setting is to lock the icon sizes, so that the Dock is always the same height:
defaults write com.apple.dock tilesize -int 60; killall Dock