How can I remove apps from Launchpad in Mac OS X 10.10 (Yosemite)?
Solution 1:
I came up with a solution via terminal. The location of the SQLite database was changed in Mac OS X 10.10 (Yosemite).
You can still delete apps from the Launchpad with this “Terminal” command. Just replace the APPNAME
with the app you want to delete.
sqlite3 $(sudo find /private/var/folders -name com.apple.dock.launchpad)/db/db "DELETE FROM apps WHERE title='APPNAME';" && killall Dock
I tested if it is still deleted after reboot. So far it seems to work.
Solution 2:
Apparently you can search for things in spotlight and hit Command-Enter instead of just Enter, and it pulls up the file location, so I promptly deleted it!