Mitsworth SCZD Asked: 2020-04-26 06:00:47 +0800 CST2020-04-26 06:00:47 +0800 CST 2020-04-26 06:00:47 +0800 CST How to remove Home Folder icon from desktop in Ubuntu 20.04? 772 When I start Ubuntu I had my "home/user" in my Desktop. test is my User. How do I make the folder not be on the desktop? home-directory gnome-shell 20.04 5 Answers Voted Best Answer user1086421 2020-05-24T16:29:07+08:002020-05-24T16:29:07+08:00 Open the terminal and type the following command: gsettings set org.gnome.shell.extensions.desktop-icons show-home false After you do this, the home folder icon should disappear from your desktop. UnKNOWn 2020-04-26T06:16:55+08:002020-04-26T06:16:55+08:00 The easiet way would be to install the package.. gnome-shell-extension-prefs Once you install the package, you can find the app in all apps.. and then turning off the switch for "Show the personal folder in the desktop" Same thing can be achieved with gnome-tweaks also, If you already Installed gnome-tweaks lenooh 2020-08-03T00:32:45+08:002020-08-03T00:32:45+08:00 To remove both the trash icon and home icon: gsettings set org.gnome.shell.extensions.desktop-icons show-home false and gsettings set org.gnome.shell.extensions.desktop-icons show-trash false No need to install any additional software ? Enrique René 2021-12-03T01:39:39+08:002021-12-03T01:39:39+08:00 I came here without solution, but this answer for similar question solve it. I'm current in Ubuntu 21.10: https://askubuntu.com/a/1335409/452437 In dconf application, after installed, I went to /org/gnome/shell/extensions/ding/ and disable show-home option. Zub 2021-09-23T13:43:31+08:002021-09-23T13:43:31+08:00 You can also use the above mentioned commands in one line To hide to home and trash icons: gsettings set org.gnome.shell.extensions.desktop-icons show-home false && gsettings set org.gnome.shell.extensions.desktop-icons show-trash false Just in case, to show those icons again: gsettings set org.gnome.shell.extensions.desktop-icons show-home true && gsettings set org.gnome.shell.extensions.desktop-icons show-trash true Hope it helps.
Open the terminal and type the following command:
After you do this, the home folder icon should disappear from your desktop.
The easiet way would be to install the package..
gnome-shell-extension-prefs
Once you install the package, you can find the app in all apps..
and then turning off the switch for "Show the personal folder in the desktop"
Same thing can be achieved with
gnome-tweaks
also, If you already Installedgnome-tweaks
To remove both the trash icon and home icon:
and
No need to install any additional software ?
I came here without solution, but this answer for similar question solve it. I'm current in Ubuntu 21.10:
https://askubuntu.com/a/1335409/452437
In dconf application, after installed, I went to
/org/gnome/shell/extensions/ding/
and disableshow-home
option.You can also use the above mentioned commands in one line
To hide to home and trash icons:
Just in case, to show those icons again:
Hope it helps.