Operations 4 min read

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.

ITPUB
ITPUB
ITPUB
How to Hide Specific Applications from the Ubuntu Dash

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.desktop

Locate 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.

Ubuntu Dash hide guide illustration
Ubuntu Dash hide guide illustration
List of .desktop files
List of .desktop files
VLC .desktop content
VLC .desktop content
VLC icon in Dash
VLC icon in Dash
Editing .desktop file with Hidden=true
Editing .desktop file with Hidden=true
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

LinuxDASHUbuntuDesktop EntryHide Application
ITPUB
Written by

ITPUB

Official ITPUB account sharing technical insights, community news, and exciting events.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.