Most Ubuntu desktop users, myself included, prefer a clean (or empty) home screen without any icons of files, folders, or services.

The issue is that the sticky Home folder icon is always present on the Ubuntu desktop by default, and it cannot be deleted from the context menu.

But not today. Follow along with this article to learn different ways to remove (or hide) the home folder icon from the Ubuntu desktop.

Method 1: Remove Home Folder Icon Using the Desktop Icons Settings (GUI)

1. Right-click anywhere on your home screen to open the context menu and click on the second last "Desktop Icons Settings" option.

Opening desktop icon settings

2. It will open the “Appearance” tab from the “Settings”, from where you have to turn off the “Show Personal Folder” option under the “Desktop Icons” section.

hiding home folder icon on ubuntu

Method 2: Remove Home Folder Icon Using the Extensions Prefs App (GUI)

The Extensions Prefs app is a popular GNOME program that allows users to modify or customize different aspects of their Ubuntu desktop with the option of installing and managing extensions.

With this application, you can easily hide the home folder from your Ubuntu desktop. So, to begin, first execute the following command to install the Extensions Prefs App.

  • sudo apt install gnome-shell-extension-prefs

Once the installation is complete, search for and launch "Extensions" from your application menu to interact with the following Extensions screen, where you have to navigate to "Desktop Icons NG (DING) Settings" under the "Built-In" section.

setting desktop icon

It will open the following window, where you have to toggle off the "Show the personal folder on the desktop" option.

hiding personal folder from desktop

Method 3: Remove Home Folder Icon Using the Gsettings Command (CLI)

If you are comfortable with the command line, you can utilize gsettings, a popular command-line utility for the GNOME desktop environment that enables users to customize various components of their DE directly from the command line.

So, to hide the home folder icon from the Ubuntu desktop using the gsettings command, simply follow the below steps based on the Ubuntu variant you are using.

Show/Hide Home Folder Icon on Ubuntu 22.04

Hide the home folder icon on your Ubuntu 22.04 desktop by running:

  • gsettings set org.gnome.shell.extensions.ding show-home false

Show the home folder icon on your Ubuntu 22.04 desktop by running:

  • gsettings set org.gnome.shell.extensions.ding show-home true

Show/Hide Home Folder Icon on Ubuntu 20.04

Hide the home folder icon on your Ubuntu 20.04 desktop by running:

  • gsettings set org.gnome.shell.extensions.desktop-icons show-home false

Show the home folder icon on your Ubuntu 20.04 desktop by running:

  • gsettings set org.gnome.shell.extensions.desktop-icons show-home true

Method 4: Remove Home Folder Icon by Disabling the GNOME Extensions (CLI)

Apart from the home folder icon, if you do not want any icons on your desktop screen, you can disable the GNOME extension "[email protected]" in Ubuntu 22.04 or "desktop-icons@csoriano" in Ubuntu 20.04, which is responsible for displaying icons on the desktop, including the home folder icon.

Enable/Disable Desktop Icons on Ubuntu 22.04

Disable the desktop icons on your Ubuntu 22.04 desktop by running:

Enable the desktop icons on your Ubuntu 22.04 desktop by running:

Enable/Disable Desktop Icons on Ubuntu 20.04

Disable the desktop icons on your Ubuntu 20.04 desktop by running:

  • gnome-extensions disable desktop-icons@csoriano

Enable the desktop icons on your Ubuntu 20.04 desktop by running:

  • gnome-extensions enable desktop-icons@csoriano