Forked from andre3k1/Change Mac Launchpad Grid Layout
Last active
July 11, 2024 15:37
-
-
Save vayn/30a4f3aeffa26fce837b6ee3d01a6c2f 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
#################################################################### | |
# Change the number of rows and columns to display in Launchpad # | |
# by typing the following two lines in Terminal. You can use any # | |
# two integers for the number of rows and columns. I'm using 15x10 # | |
#################################################################### | |
defaults write com.apple.dock springboard-columns -int 15 | |
defaults write com.apple.dock springboard-rows -int 10 | |
#################################################################### | |
# Reset all settings | |
#################################################################### | |
defaults write com.apple.dock springboard-rows Default | |
defaults write com.apple.dock springboard-columns Default | |
killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment