Skip to content

Instantly share code, notes, and snippets.

@dmcbane
Last active April 4, 2024 02:33
Show Gist options
  • Save dmcbane/6a5231c954c989612023771b2e7901dd to your computer and use it in GitHub Desktop.
Save dmcbane/6a5231c954c989612023771b2e7901dd to your computer and use it in GitHub Desktop.
How to remove applications from the macOS LaunchPad

How to remove applications from the macOS LaunchPad

sqlite3 $(find /private/var/folders \( -name com.apple.dock.launchpad -a -user $USER \) 2> /dev/null)/db/db "SELECT * FROM apps;"

sqlite3 $(find /private/var/folders \( -name com.apple.dock.launchpad -a -user $USER \) 2> /dev/null)/db/db "DELETE FROM apps WHERE title='APP_NAME_CASE_SENSITIVE';" && killall Dock

How to remove an icon from launchpad that does not appear in the Finder?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment