After a parallelsdesktop is installed, there are many more icons in the launchpad of OSX, but many of them are not what I want. How can we delete or modify them? The following describes some methods: ① directly operate the launchpad folder on Applications and UserNameApplications.
After a parallels desktop is installed, there are many more icons in the launchpad in OSX, but many of them are not what I want. How can we delete or modify them? The following describes some methods: ① directly operate the launchpad folder. The application is located under/Applications and/User/Name/Applications.
After a parallels desktop is installed, there are many more icons in the launchpad in OSX, but many of them are not what I want. How can we delete or modify them? The following describes some methods:
① Directly operate the Appications folder
The launchpad application is located at/Applications and/User/Name/Applications. You can modify and delete the application by yourself.
② Operate the database
Some icons may have been deleted, but the icons are still on the Launchpad. You can delete them in a simple way. Click the icon and add a question mark to the icon, then drag it to Trash. The following describes how to delete a database.
The Launchpad data is stored in/Users/Name/Library/Application Support/Dock. The files under my mac are as follows:
69CDDDAD-01D7-40C7-83A4-1E88292D5765.db export toppicture. db. We operate on this database file with a long name. This is a database file saved by the sqlite database and can be operated using the mesasqlite gui tool or command line. The following information is displayed in the database. What makes sense is a table called apps.
SQLite version 3.8.5 2014-08-15 22: 37: 57 Enter ". help "for usage hints. sqlite>. tablesapp_sources dbinfo image_cache widgets apps downloading_apps items categories groups widget_sources sqlite>. schema appsCREATE TABLE apps (item_id integer primary key, title VARCHAR, bundleid VARCHAR, storeid VARCHAR, category_id INTEGER, moddate REAL, bookmark BLOB); sqlite> select * from apps limit 5; 7 | App Store | c Om. 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?
To delete some applications, you can directly perform some SQL operations on the apps table.