I don't know how I changed this, after a restart I found this home folder on the desktop. I don't want it there - how do I remove it? Left click does not show an option to delete it.
Asked
Active
Viewed 4.0k times
20
-
4check with nautilus the directory structure of /home/, /home/$USER/ and /home/$USER/Desktop. Have you got Ubuntu Tweak installed? UT has an option to show "home". See http://askubuntu.com/a/267056/15811 – Rinzwind Jun 08 '14 at 17:35
4 Answers
32
This has changed under Ubuntu 19.04 "Disco Dingo":
gsettings set org.gnome.shell.extensions.desktop-icons show-home false
Similarly for the Trash icon:
gsettings set org.gnome.shell.extensions.desktop-icons show-trash false
Should you wish the icons back again, repeat the command with false
changed to true
.

scruss
- 1,259
27
For Ubuntu 22.04 or later:
gsettings set org.gnome.shell.extensions.ding show-home false

user2514157
- 783
- 8
- 19
-
Odd. Even after a restart, this did not work for me (v22.04.3), but the settings UI did https://askubuntu.com/a/1410890/849369 – Kermit Jan 08 '24 at 15:11
13
For Ubuntu versions prior to 19.04:
gsettings set org.gnome.nautilus.desktop home-icon-visible false
For Ubuntu 19.04 or later, see this answer.

Tim
- 32,861
- 27
- 118
- 178
-
Similarly, to hide the trash icon, do
gsettings set org.gnome.nautilus.desktop trash-icon-visible false
– Jonathan E. Landrum Mar 19 '18 at 17:06 -
for Mate Desktop (fork of Gnome2), use
gsettings set org.mate.caja.desktop home-icon-visible false
– mreithub Aug 07 '18 at 15:37