Just migrated from Windows.
I'm on Ubuntu 20.04 LTS.
One of the reasons why I migrated was the lure of being able to customize everything about the GUI.
Recently I was looking at some image files and installed Image Magick. It's now showing on "Show Applications". I don't like the icon so I wanted to remove it, but I was told that it's really important because of some dependencies (weird, because I had to install it first). So, I would like to know if I can just make it not show up in "Show Applications". That'd be useful, because there's a lot of other defaults apps that I don't use but don't want to mess around with.
Thank you for your attention.
Edit:
For anyone who googles this, the solution I went with was to backup the .desktop
files under ./usr/share/applications
, and then delete the originals. It's not a perfect solutions. Updates bring them back. Snap apps (what you install from the "Ubuntu Software" app) can be found in .var/lib/snapd/desktop/applications
. Some software that you install won't be in either. To find those, to the root folder with the Files app, then search for *.desktop
. You can then right-click the file in question and press on "Open Item Location."
/usr/share/applications
if its not a snap app. Then copy the file to../local/share/applications
and have the lineNoDisplay=true
to hide it and also to survive updates.. – PRATAP Jul 28 '20 at 17:44/usr/local/share/applications
? If yes, it doesn't exist. I created it and copied the file over (not moved, I made a copy), then typed this into the terminal:sudo sed --in-place 's/NoDisplay=true/NoDisplay=false/g' display-im6.q16.desktop.desktop
Nothing happened though.
– Jul 28 '20 at 17:59$HOME/.local/share/applications
– PRATAP Jul 28 '20 at 18:07$HOME/ .local/share/applications
, then edited it on gedit and addedNoDisplay=true
at the end. Turned of the laptop and back on. Nothing changed. – Jul 29 '20 at 02:45NoDisplay=true
to it at the end, but nothing happened either. – Jul 29 '20 at 02:57