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
  • 13,687

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
  • 207,228
acer
  • 261