0

I don't need ImageMagick in the Dash but need to keep it as a installed program because many other programs depend on it.

Question:

Can I somehow hide the two icons or do I have to delete them?

Screenshot:

Screenshot

orschiro
  • 12,987
  • 16
  • 82
  • 157

1 Answers1

1

Application entries are usually stored in /usr/share/applications/. You could view the contents of that folder, and then remove individual entries (or, a better solution, rename them to have a different extension). Here's an example (in this case I hide and unhide Chromium - the commands would be similar for ImageMagick).

To hide:

 cd /usr/share/applications
 sudo mv chromium-browser.desktop chromium-browser.desktop.hidden

And, to unhide:

 cd /usr/share/applications
 sudo mv chromium-browser.desktop.hidden chromium-browser.desktop

Hope this helps.

muru
  • 193,181
  • 53
  • 473
  • 722
acer
  • 251
  • 1
  • 6