Mac OS: Remove app from Launchpad

Issue this command:

sqlite3 ~/Library/Application\ Support/Dock/*.db "DELETE from apps WHERE title='APP_NAME';" && killall Dock

This tells sqlite3 to remove the app called APP_NAME from the Launchpad database and then kill the process called Dock, thereby restarting it.

Dominik Schöler About 11 years ago