How to reduce the size of all gnome-shell icons?

24,176

Solution 1

To configure the layout of the application icons in the GNOME Shell, you have to modify /usr/share/gnome-shell/theme/gnome-shell.css. Note that the contents of this file may vary as it is dependent on the particular theme that you are using. In the case of the Dark Glass theme, here are the modifications necessary to reduce the size and layout of the displayed icons by 50% in Applications Overview.

.icon-grid {
    spacing: 18px;                       /* was 36px */
    -shell-grid-item-size: 35px;         /* was 70px */
}

.all-app .icon-grid {
    -shell-grid-item-size: 59px;         /* was 118px */
}

.all-app .overview-icon {
    icon-size: 48px;                     /* was 96px */
}

Read more here.

Solution 2

For size only: Open nautilus, go to Desktop folder, click in the upper right corner on the icon with the four squares, again the four squares and then set the size using the provided slider.

Share:
24,176
Tojamismis
Author by

Tojamismis

Updated on September 18, 2022

Comments

  • Tojamismis
    Tojamismis over 1 year

    Is it me or is the size of icons in Gnome 3.2 huge? It makes my 1200*800 resolution look like a netbook interface. Please how do I reduce icons size?

  • mac
    mac about 11 years
    Its changed now. But one can get an idea from this post. Now we have to change spacing, shell-grid-horizontal-item-size, shell-grid-vertical-item-size under ".icon-grid" and icon-size under ".icon-grid .overview-icon"
  • Ángel
    Ángel over 6 years
    Nice! Seems it doesn't need to be the Desktop folder. Sharing the Desktop icon size and the folder icon size is a really simple concept, but hard to figure out. Specially when the Desktop icons suddenly changed size after an update (ie. it's not linked to having just changed the icon size in a folder).