Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

vodouman

macrumors regular
Original poster
Mar 30, 2008
206
15
London
Hi guys,

Just installed Things.app and it has made a duplicate on my Launchpad, looks stupid and it's annoying me. I tried to use AppZapper to get rid of it, I then reset and one of the logos remained anyway :/

Any ideas?

- Vodouman
 

Attachments

  • Screen Shot 2011-10-05 at 19.41.23.png
    Screen Shot 2011-10-05 at 19.41.23.png
    168.1 KB · Views: 146
Use the command in Terminal:

sudo rm ~/Library/Application\ Support/Dock/*.db

Then run the command in Terminal:

sudo killall Dock



If that doesn't help, uninstall Things, run the above conmands, then reinstall Things.
 
Use the command in Terminal:

sudo rm ~/Library/Application\ Support/Dock/*.db

Then run the command in Terminal:

sudo killall Dock



If that doesn't help, uninstall Things, run the above conmands, then reinstall Things.

Thanks for your response! Would you mind explaining to me what the command does so that I can learn something?

- Vodouman
 
Basic:
I'm a Admin (here's my password), Please delete any files with the .db extension in my user folder under /Library/Application Support/Dock/ and then restart the Dock. (The Dock will automatically restart when terminated)
Detailed:
  • sudo
    Runs the following commands as a Superuser (Administrator)

  • rm
    Unlinks (removes/deletes) a file

  • ~
    Shortcut to the currently logged in users home directory (ex: /Users/JohnSmith/)

  • /Library/Application\ Support/Dock/
    A folder path which (if you include the ~) equals: Macintosh HD>Users>JohnSmith>Library>Application Support>Dock
    (The forward slash \ is because you can't have spaces in file paths when using Terminal, this fixes up the typed string so it doesn't error out)

  • *.db
    Is specifying which file
    (The * is a wild card letting it know to delete a file with any name. The .db is telling it to only delete files with the db extension. So AnyFileName.db)
--------------
  • sudo
    Runs commands as superuser

  • killall
    Asks a application to terminate (Quit) by name

  • Dock
    The application you want killall to terminate (Note that the name IS case sensitive)

You're removing the .db file because this is where the layout of the Launchpad icons are stored and restarting the Dock (Launchpad is part of the Dock App) so the .db file gets re-created and re-loaded.


Note that since you're working with your own (and not system) files, the "sudo" at the start of these commands was not really necessary.
.
 
Last edited:
Massive thanks to all of you for helping me with that (the person providing the solution and the bloke who explained the Terminal commands).

Fixed my problem and also re-arranged them in alphabetical order, brilliant :)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.