The duplicate question was the same, how to resize the app icons. But the answers did not work for me. From my home setting on Terminal I pasted: /usr/share/gnome-shell/theme/ubuntu.css and got the response; bash: /usr/share/gnome-shell/theme/ubuntu.css: Permission denied I tried the other answer and pasted: /usr/share/gnome-shell/theme/gnome-shell.css and got the same response; bash: /usr/share/gnome-shell/theme/gnome-shell.css: Permission denied
Asked
Active
Viewed 654 times
1 Answers
0
In nautilus, the minimum size of 48px is hard-coded within their software. The setting that control this is:
You can see by running this command it's already set to small, so it can't get smaller:
gsettings get org.gnome.nautilus.icon-view default-zoom-level
Now, depending on your preference, you can set the zoom level by altering the value within the quotes from the list of values listed below
gsettings set org.gnome.nautilus.icon-view default-zoom-level 'value'
- small
- standard
- large
- larger
- largest
For fine grain control, use
gsettings set org.gnome.nautilus.icon-view thumbnail-size 100
Replace 100
with your desired size

Tejas Lotlikar
- 2,945
- 5
- 17
- 26
gsettings set org.gnome.nautilus.icon-view thumbnail-size 'your-size'
– PRATAP Dec 01 '19 at 03:36gsettings reset org.gnome.nautilus.icon-view thumbnail-size
– PRATAP Dec 01 '19 at 03:38Set the value of KEY to VALUE
Arguments: SCHEMADIR A directory to search for additional schemas SCHEMA The name of the schema PATH The path, for relocatable schemas KEY The key within the schema VALUE The value to set
– Paul SVD Dec 01 '19 at 03:55your-size
with 24 or 48 or 64 any value you prefer – PRATAP Dec 01 '19 at 04:26