Posted on 04-23-2015 11:54 AM
an uninstall policy uninstalls an application, it is no longer advertised in /Applications. Afterwards on some computers the application icon is gone from launchpad while on some other computers the application icon is still present (question ? over it).
Is there a script or something that can check afterwards to somehow trash the icon?
Solved! Go to Solution.
Posted on 06-25-2015 09:39 AM
eventually they don't appear in launchpad
Posted on 06-25-2015 09:39 AM
eventually they don't appear in launchpad
Posted on 06-25-2015 09:46 AM
So the icons in launchpad are actually in a sqlite database. You can use this as a command or script to remove the app of your choice from the launchpad menu:
sqlite3 ~/Library/Application Support/Dock/*.db "DELETE from apps WHERE title='nameofapp';" && killall Dock
Hopefully that helps.