How to Hide Specific Applications from the Ubuntu Dash
This guide explains how to hide an application from Ubuntu's Dash by locating its .desktop file, copying it to the local applications directory, editing the file to set Hidden=true, and then logging out and back in to apply the change.
This short guide shows how to hide applications in the Ubuntu Dash by working with their .desktop launcher files, which are simple text files that act as shortcuts.
.desktop files are typically stored in one of three directories:
/usr/share/applications
/usr/local/share/applications
~/.local/share/applications
For example, listing the global directory on Ubuntu 18.04 LTS: $ ls /usr/share/applications/ Viewing the contents of a specific launcher, such as VLC, reveals its configuration: $ cat /usr/share/applications/vlc.desktop To hide VLC (or any other app) from the Dash, follow these steps:
Copy the original .desktop file to the local directory so that a user‑specific copy overrides the system one:
$ sudo cp /usr/share/applications/vlc.desktop ~/.local/share/applications/Edit the copied file with a text editor (e.g., nano):
$ sudo nano ~/.local/share/applications/vlc.desktopLocate the [Desktop Entry] section and add the line Hidden=true (or change it if it already exists). Save and close the file.
Log out of the session and log back in so the change takes effect.
After logging back in, typing “vlc” in the Dash will no longer show the VLC icon.
To make the application visible again, simply delete the local copy of the .desktop file: $ rm ~/.local/share/applications/vlc.desktop Be careful to remove the file from the ~/.local/share/applications directory, not from the system directory /usr/share/applications, to avoid affecting other users.
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
ITPUB
Official ITPUB account sharing technical insights, community news, and exciting events.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
