After installing a parallels desktop, OSX has a lot of icons in the launchpad, but a lot of it is not what I want, how can we delete or modify it, here are some methods:
① Direct Operation Appications Folder
Launchpad the location of the application are under/applications and/user/name/applications, modify the deletion by themselves
② Operating Database
Some icons may have been deleted, but the icon is still on the launchpad, this can be a relatively simple way to delete, click on the icon, the icon added a question mark, and then drag directly into the trash. Let's talk about the delete operation from the database.
Launchpad Data Save location under/users/name/library/application Support/dock, the files under my Mac are as follows
69cdddad-01d7-40c7-83a4-1e88292d5765.db Desktoppicture.db, this is the name of the long db file, this is a SQLite database saved database files, You can use the Tools mesasqlite GUI tool or command line to operate. Some of the information in the database is shown below. One of the things that is meaningful to us is a table called apps.
[SQL]View Plaincopy
- SQLite version 3.8.5 2014-08-15 22:37:57
- Enter '. Help ' for usage hints.
- Sqlite>. Tables
- App_sources Dbinfo Image_cache Widgets
- Apps Downloading_apps Items
- Categories Groups Widget_sources
- Sqlite>. Schema Apps
- CREATE TABLE Apps (item_id INTEGER PRIMARY KEY, title VARCHAR, Bundleid varchar, StoreID varch ar,category_id INTEGER, moddate REAL, bookmark BLOB);
- Sqlite> SELECT * from apps limit 5;
- 7| APP store|com.apple.appstore| | 1|390157307.0|book?
- 9| automator|com.apple.automator| | 1|388084524.0|book?
- 10| Calculator |com.apple.calculator| | 1|399110725.0|book?
- 13| Calendar |com.apple.ical| | 2|416818725.0|book?
- 14| Chess |com.apple.chess| | 3|399107832.0|book?
We want to delete some of the apps, and we can do some SQL operations on the Apps table directly.
OSX Launchpad icon Removal