-
Options - icon_names
- : show-home
- : show-trash
-
true : show , false : hide
$ gsettings set org.gnome.shell.extensions.desktop-icons <icon_name> <true/false>
====================================================================================================
- edit below file
$ sudo nano /usr/share/gnome-shell/extensions/[email protected]/dash.js
- Update as following :
let firstIcon = firstButton.icon;
// Enforce the current icon size during the size request
firstIcon.setIconSize(this.iconSize);
- With :
let firstIcon = firstButton.icon;
// Enforce the current icon size during the size request
if(firstIcon){
firstIcon.setIconSize(this.iconSize);
}
Then reload the gnome shell using Alt+F2
then r
, the issue was gone!
====================================================================================================