Is there some way to decrease folders/icons size in Nautilus 3.18?

25,949

Solution 1

This setting is now a little hard to find in the GUI since it is not explicitly labeled.

Click on the icon view button to bring up settings dialog; then move the slider to the left to change the icon size to small.

enter image description here

You can find the same setting in dconf-editor through:

org >> gnome >> >> nautilus >> icon-view >> default-zoom-level: [small, standard, large]

There is also a thumbnail-size setting that is supposed to work along with the small setting; but nautilus does not seem to follow this setting and it did not have an effect. You may want to file a bug report.

Solution 2

Use:-
Ctrl+ To increase the font size
Ctrl- To decrease the font size

(Press and hold the Ctrl key, then lightly tap the + key, then release both)

Solution 3

Going below 48px requires changing the Nautilus source code and recompiling. (Yes, they hard-coded icons sizes.)

INSTRUCTIONS FOR NAUTILUS 3.20.4 ON UBUNTU GNOME 17.04

  1. Install the following dependencies:

    libgd-dev
    autotools-dev
    libexif-dev
    libexempi-dev
    libselinux1-dev
    libtracker-sparql-1.0-dev
    libext-dev
    libxml2-dev
    libgnome-desktop-3-dev
    

    Each one installs a bunch of other stuff, so hopefully I've given you the correct parent package name. I apologize for not recalling with 100% accuracy exactly what I installed, but this looks fairly correct to me immediately after my install. (Notify me if I'm inaccurate anywhere.)

  2. Download from the Nautilus snapshots website the version of Nautilus that you are currently using. To find that out, run nautilus --version from the terminal. After downloading the archive, unzip it to whatever directory you want to work from.

  3. From within the unzipped package, open the file nautilus-icon-info.h. Within the first several lines you will see various sizes designated for the particular scroll-setting options. For instance, within the file for version 3.20.4 the icon sizes start on line 36. Change each of those levels to whatever you want to use so that you can make the icons much smaller (or larger).

  4. After editing and saving the file, it's time to configure, compile, and install. Run the following commands from the terminal from within the base directory of the version of nautilus that you have downloaded and unzipped. Make sure that you are within the base of the folder structure of the nautilus directories!

    ./configure
    make
    sudo make install
    

    These can be run altogether with the command

    ./configure && make && make install
    

If the ./configure command fails it's because you are missing some other dependencies. I apologize if my list of dependencies above was incomplete. Google (or whatever search engine you want) to find what package it is that you need. You can use Synaptic to search for what you need if you're unsure even after Googling.

Once installed, I suggest a reboot just to make sure that every single thing is reloaded properly. You can now tweak with your icon sizes as you wish.

Have fun!

Solution 4

Nautilus 3.22 .Open Nautilus (not maximized) on Desktop with all the rest windows minimized and then press CTRL+Scroll mouse wheel. That does the trick.

Share:
25,949

Related videos on Youtube

np_3ka
Author by

np_3ka

Updated on September 18, 2022

Comments

  • np_3ka
    np_3ka over 1 year

    In the newest Nautilus 3.18 the smallest folder/icon size is really too big. Is there some way to hack (or something) this program and set a smaller one? enter image description here

    • RiaanV
      RiaanV over 8 years
      Have you installed the gnome tweak tool? That is if you are using gnome. Otherwise if you use unity install the unity tweak tool that should give you everything you need.
    • np_3ka
      np_3ka over 8 years
      I tried searching an appropriate setting in GNOME Tweak Tool, but the only thing I see is characters dimension, nothing more...
    • RiaanV
      RiaanV over 8 years
      have you looked under the zoom settings?
    • np_3ka
      np_3ka over 8 years
      Sure! It's already too big. I was on Nautilus 3.14 before 3.18 and the icons were way small...
  • np_3ka
    np_3ka over 8 years
    Well, I already did it, but it's way too big compared to the old Nautilus 3.14... :/
  • chaskes
    chaskes over 8 years
    I believe that's as small as it gets by default. There's a thumbnail-size setting that's supposed to work when the view is set to small, but it doesn't seem to actually have an effect. You may want to file a bug report.
  • Admin
    Admin almost 8 years
    Shortcut: Ctrl + mouse-scroll
  • loved.by.Jesus
    loved.by.Jesus almost 7 years
    Depending on the Linux distribution, in which you are using nautilus, you might have to install dconf-editor, i.e., sudo apt-get install dconf-editor on terminal.
  • Fabby
    Fabby about 6 years
    Please have a look at my edits and read the Editing help as well for your education...
  • David
    David over 5 years
    There's no ./configure in Nautilus sources. Meson or jhbuild are used now, via: kevlopez.com/blog/compiling-nautilus-with-meson . It seems this though is the way to build GNOME apps: wiki.gnome.org/Newcomers/BuildProject