Apple Event: May 7th at 7 am PT

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How to remove app from LaunchPad

How do you remove an app that was manually added to LaunchPad?


After getting the icons to "wiggle" I tried dragging the target app to the trash, tried pressing the delete key while click-holding on the app.


My gosh, what ever has happened to the Apple User Interface Guidelines where the intent is to make actions simple and intuitive? I've been using Macs since the Mac SE days, and am myself a hobbyist developer. This really shouldn't be rocket science to customize the LaunchPad, nor should I need to refer to a manual.

PM 2x2.3, MP 2x2.66 Duo, MP 2x2.8 Quad and MBP 2.26 Duo Unibody, Mac OS X (10.6.8)

Posted on Apr 2, 2013 8:34 AM

Reply
32 replies

Oct 29, 2013 1:01 PM in response to Ken Auggie

The short answer is that there is no way to use the LaunchPad this way currently. I completely agree that the launch pad should work that way - customizable.


Anyway, the best solution I've found is to make a folder/group in the LaunchPad called "Not Used" or something and drag what you don't want cluttering up your LaunchPad into there. That way it is out of the way but not deleted off of the computer. Hope that helps.

Oct 30, 2013 7:39 AM in response to Ken Auggie

There's a code that you can use on terminal in order to remove the apps from Launchpad. Unfortunately, I have not been able to get it to work on Mavericks. I will keep trying to figure it out.


And would the rest of you just answer the questions?




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

Nov 1, 2013 5:42 PM in response to Ken Auggie

Man this thread is kinda rediculous. I agree with Ken Auggie and kinda feel for him. I would start to feel like I'm going insane with so many responses from people suggesting to delete the application, and this guy William Lloyd repeatedly providing these lame responses that appear to be based on his assumptions of Launch Pad's intended functionality.


I don't think I'm special or anything, but I just wanna say that I work for a software company on the tech side of things... and that I feel that Ken is absolutely right. We are constantly taking DCR's (Design Change Requests) from our customers, to either change existing or create new features for our software. The intent of these kinda things is dictated by the desire to be intuitive and if it ends up failing at that, then it's not necisarily serving it's purpose well.


That being said, I do want to step back and say that I can clearly see and appreciate where Apple obviously seems to trade ease of use for minimal/cleanliness of design, and how things function... Kinda like a form/function tight rope.


I just don't get the point of saying, or where people come up with these dogmatic things like, "that's the way it is and you are trying to make it work in way that it was not designed". Take your mind out of its box. While I will tell someone that modifying a database will have to be done at your own risk, I will not tell them that expectations of how something should function, or trying to change it to meet your needs is wrong.




Here, I found out how to get it done on Mavericks based on the original command that Dannyboy3D mentions:


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

Since the above was giving me some kind of error like "Your trying to do too many things at once", I decided to break up the steps a little and it worked....


First, open the terminal and navigate to the directory specified in the command above by typing the following:


cd ~/Library/Application\ Support/Dock


Next, open a finder window and go to that location. Since your user-specific Library folder is hidden by default, you can go there by clicking on the "Go" menu at the top of the screen, holding down the Option key, and clicking Library when it appears.


Once you are in the "Dock" folder, you will see two .db files. These are databases. Essentially the command above would navigate to this directory and, for all databases, delete records titled 'Calculator' from the apps table and restart the dock.


Now that you are already in that directory, you can just do that deletion part one at a time by typing the following (note: you can drag one of the .db files from the finder window onto the Terminal window, after typing sqlite3 instead of having to type it out.):


sqlite3 7B313CFF-FF15-41AA-90FA-DE1DC21C3997.db "DELETE from apps WHERE title='Calculator';"


Do the same thing for the other .db file if you like. I recieved an error that there was no apps table in the other .db file (desktoppicture.db) when I tried it.


Now that the records titled 'Calculator' have been deleted from the apps tables, you'll just have to restart the dock by typing the following:


killall Dock


Oh and I forgot to mention a couple of important things.


You can of course wait to perform the "killall Dock" command until you have finished performing all of the deletions that you wish to perform.


More importantly, you can cause the whole line that you just typed to appear again by pressing the up arrow on the keyboard (or by pressing it two times if you have already executed the killall Dock command) and just left arrow back to the app name that you had specified after title= and replace it with the next intended deletion.


For example, press the up arrow and left arrow to the ' after Calculator, delete Calculator and replace it with System Preferences, leaving the single quotes in place.


Message was edited by: jimmyJonesJonson

Nov 2, 2013 10:05 AM in response to tlever

Basically, this is what I've been doing when I gave up trying to remove icons from Launchpad: creating a bunch of "Groups" (e.g. Adobe Utilities) and stuffing them with the junk I will never "launch."


All the hacks do no good because once a minor Apple OS update (e.g. 10.8.x) comes along, it typically rebuilds the Launchpad entirely, thereby wiping out any "tweaking" I may have performed via manually adding and removing icons.


BTW, the underlying reason why I wanted to manually add apps to the Launchpad, which I didn't explain before and provides a solid reason for needing to "customize" the icons on Launchpad, my boot drive is a 500GB SSD and is just too small to put the majority of my applications and documents on, so I install most of my apps on a traditional 3TB drive. But Launchpad does not manage any applications that are not on the boot volume. Thus, my Launchpad is just a paltry subset of my application library, and thus for the most part, is woefully insufficient as a true "launch pad" for all the applications I may use.

Dec 5, 2013 4:21 PM in response to Ken Auggie

I just bought a Macbook and Launchpad is driving me up the wall. I invested in it because my boyfriend's Macbook is still going strong after 7-8 years (still running OS X 10.4) and I love it. I really wanted to like/use Launchpad, I like a really clean & minimal dock so I thought I'd be able to use it as like... apps on deck, or something. The thing is so poor for customization though. Like Ken, I just wanted to remove the **** icon from the **** Launchpad while keeping it on my computer and able to access through Spotlight or the Applications folder. Why the **** should this be impossible? WHY???? I don't want to pay $8 for an app that will let me do what should be super simple.


I've grouped them together for now but there are some problems, such as: groups only hold a certain amount so instead of being able to just have one group, I have to have multiple ugly grouped icons just clogging things up. Also I'm not pleased about the prospect of updates ungrouping them like Ken mentioned in his last post. What a mess... Color me super duper unimpressed.

Dec 16, 2013 12:10 PM in response to Ken Auggie

*ridiculous


Anyway, there's a much easier way, and let's think about this for a moment.


Launchpad automatically adds apps that it detects in your Applications folder ... So, if you don't want a particular app in Launchpad, then maybe it shouldn't be in your Applications folder? Or maybe you can just dump all of your unwanted apps into an "Other" folder in Launchpad?


However - it's really easy to add apps to Launchpad WITHOUT hacking or opening Terminal. Simply put an alias of your app into your Applications folder (take out the word "alias" from the alias once it's moved). Et viola, your app-from-wherever-it-is-on-your-Mac is now in your Launchpad.


You're welcome.

How to remove app from LaunchPad

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.