How to Restore the Classic Launchpad in macOS Tahoe
Apple’s latest obsession with translucency—the "Liquid Glass" design language—is the most polarizing change to the Mac interface in years. While the fluid animations look great in a keynote, they’re a laggy distraction for anyone who uses the Launchpad as a high-speed app swicher. If you’re tired of the blur and miss the functional, high-contrast grid of previous versions, you can bypass the overhaul using the Terminal.
Targeting the Liquid Glass UI
In macOS Tahoe, the Launchpad isn’t a standalone app; it’s a sub-process of the Dock. Because the Liquid Glass aesthetic is baked into the Dock's internal preferences, you can’t disable it through System Settings. You have to inject specific preference keys that the GUI hides from the average user.
Step 1: Kill the "Glass" Effect
defaults command for this. This tells Tahoe to ignore the new rendering engine for the Launchpad specifically and revert to the opaque legacy style.Enter this in your Terminal:
defaults write com.apple.dock glass-launchpad -bool FALSEFALSE, you’re forcing the system back to the standard rendering engine used before the Tahoe update.Step 2: Clear the Layout (The Nuclear Option)
The biggest "gotcha" when reverting the design is "ghosting"—where remnants of the Liquid Glass blur linger behind your icons. To get a clean slate, you must reset the Launchpad database.
defaults write com.apple.dock ResetLaunchPad -bool TRUEresetlaunchpad in lowercase will fail silently, leaving the Liquid Glass remnants exactly where they were.Step 3: The Moment of Truth
Preferences in macOS Tahoe are cached in memory. To force the system to read your new configuration files, you have to restart the Dock process.
killall command:killall DockYour screen will black out for a split second—the moment of truth for the hack—and the Dock will relaunch. Open your Launchpad, and you should see the classic, high-contrast interface.
Troubleshooting and Permission Fixes
sudo.sudo killall Dock. You’ll be prompted for your admin password; the cursor won't move while you type, so just hit Enter when you're done.killall command runs before the system finishes writing the new preference to the disk. Wait about ten seconds after entering the defaults commands before restarting the Dock to let the .plist file sync.Advanced Grid Customization
The classic Launchpad look works best when you maximize screen real estate. Power users generally find the default Tahoe spacing too "airy." You can tighten up the grid density to create a high-density "Control Center" with these commands:
-
For 10 columns:
defaults write com.apple.dock springboard-columns -int 10 -
For 8 rows:
defaults write com.apple.dock springboard-rows -int 8
killall Dock again to apply. This layout feels significantly more professional and efficient than the standard Liquid Glass spacing.Reverting to Tahoe Defaults
TRUE:defaults write com.apple.dock glass-launchpad -bool TRUE; killall DockStick to these native Terminal commands. Avoid third-party "cleaner" apps that promise one-click fixes; they usually install unnecessary background daemons that will eventually break when the next macOS Tahoe point-release drops. The command line is cleaner, safer, and uses the system's own logic to get the job done.
