RHEL 7, GNOME shell - decrease desktop icon size

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












15















Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?










share|improve this question


























    15















    Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?










    share|improve this question
























      15












      15








      15


      3






      Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?










      share|improve this question














      Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?







      gnome-shell icons






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 18 '15 at 17:42









      LoukiosValentine79LoukiosValentine79

      43921031




      43921031




















          5 Answers
          5






          active

          oldest

          votes


















          15














          Run this in a terminal :



          gsettings set org.gnome.nautilus.icon-view default-zoom-level small





          share|improve this answer


















          • 4





            Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

            – Celdor
            Sep 22 '17 at 10:09


















          12














          enter image description here



          Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small






          share|improve this answer


















          • 2





            Also note that nautilus now has this option built in

            – smac89
            Dec 22 '16 at 23:09


















          4














          One more way how to change the size of desktop icons is directly from Nautilus:



          • Open nautilus

          • change the way of displayed icons to icon view NOT detailed view!

          • zoom icons using Ctrl + mouse wheel

          While zooming the icon view the icons are changed on the desktop at the same time.

          Zooming is not reflected while using detailed view!



          Edit: If you're on a laptop without scroll wheel, use Ctrl + +, or Ctrl + -, to increase or decrease icon size.






          share|improve this answer

























          • the most simple solution here.

            – H Aßdøµ
            May 29 '18 at 18:26


















          0














          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.)



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


          2. 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).



          3. 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



          This 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!






          share|improve this answer
































            0














            This solution was design to address the issue in rhel 7.4 but might also be relevent here.
            There seem to be a design decision regarding icons size acroding to this link. but that looks to me like a bug: https://bugzilla.redhat.com/show_bug.cgi?id=1478153



            there is also a solution sugested here: https://access.redhat.com/solutions/3138541



            But eventually what i did to address this is as followed:



            sed -i '/default-zoom-level/n; s/large/standard/ ' /usr/share/glib-2.0/schemas/org.gnome.nautilus.gschema.xml && glib-compile-schemas /usr/share/glib-2.0/schemas/ >/dev/null 2>&1





            share|improve this answer






















              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "106"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f250266%2frhel-7-gnome-shell-decrease-desktop-icon-size%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              5 Answers
              5






              active

              oldest

              votes








              5 Answers
              5






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              15














              Run this in a terminal :



              gsettings set org.gnome.nautilus.icon-view default-zoom-level small





              share|improve this answer


















              • 4





                Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

                – Celdor
                Sep 22 '17 at 10:09















              15














              Run this in a terminal :



              gsettings set org.gnome.nautilus.icon-view default-zoom-level small





              share|improve this answer


















              • 4





                Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

                – Celdor
                Sep 22 '17 at 10:09













              15












              15








              15







              Run this in a terminal :



              gsettings set org.gnome.nautilus.icon-view default-zoom-level small





              share|improve this answer













              Run this in a terminal :



              gsettings set org.gnome.nautilus.icon-view default-zoom-level small






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Sep 21 '17 at 12:38









              paul-emilpaul-emil

              15113




              15113







              • 4





                Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

                – Celdor
                Sep 22 '17 at 10:09












              • 4





                Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

                – Celdor
                Sep 22 '17 at 10:09







              4




              4





              Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

              – Celdor
              Sep 22 '17 at 10:09





              Additionally, on Centos 7 (the current release 7.4.1708 while typing this comment), this gives the list of all icon size options: gsettings range org.gnome.nautilus.icon-view default-zoom-level.

              – Celdor
              Sep 22 '17 at 10:09













              12














              enter image description here



              Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small






              share|improve this answer


















              • 2





                Also note that nautilus now has this option built in

                – smac89
                Dec 22 '16 at 23:09















              12














              enter image description here



              Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small






              share|improve this answer


















              • 2





                Also note that nautilus now has this option built in

                – smac89
                Dec 22 '16 at 23:09













              12












              12








              12







              enter image description here



              Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small






              share|improve this answer













              enter image description here



              Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Dec 19 '15 at 16:45









              LoukiosValentine79LoukiosValentine79

              43921031




              43921031







              • 2





                Also note that nautilus now has this option built in

                – smac89
                Dec 22 '16 at 23:09












              • 2





                Also note that nautilus now has this option built in

                – smac89
                Dec 22 '16 at 23:09







              2




              2





              Also note that nautilus now has this option built in

              – smac89
              Dec 22 '16 at 23:09





              Also note that nautilus now has this option built in

              – smac89
              Dec 22 '16 at 23:09











              4














              One more way how to change the size of desktop icons is directly from Nautilus:



              • Open nautilus

              • change the way of displayed icons to icon view NOT detailed view!

              • zoom icons using Ctrl + mouse wheel

              While zooming the icon view the icons are changed on the desktop at the same time.

              Zooming is not reflected while using detailed view!



              Edit: If you're on a laptop without scroll wheel, use Ctrl + +, or Ctrl + -, to increase or decrease icon size.






              share|improve this answer

























              • the most simple solution here.

                – H Aßdøµ
                May 29 '18 at 18:26















              4














              One more way how to change the size of desktop icons is directly from Nautilus:



              • Open nautilus

              • change the way of displayed icons to icon view NOT detailed view!

              • zoom icons using Ctrl + mouse wheel

              While zooming the icon view the icons are changed on the desktop at the same time.

              Zooming is not reflected while using detailed view!



              Edit: If you're on a laptop without scroll wheel, use Ctrl + +, or Ctrl + -, to increase or decrease icon size.






              share|improve this answer

























              • the most simple solution here.

                – H Aßdøµ
                May 29 '18 at 18:26













              4












              4








              4







              One more way how to change the size of desktop icons is directly from Nautilus:



              • Open nautilus

              • change the way of displayed icons to icon view NOT detailed view!

              • zoom icons using Ctrl + mouse wheel

              While zooming the icon view the icons are changed on the desktop at the same time.

              Zooming is not reflected while using detailed view!



              Edit: If you're on a laptop without scroll wheel, use Ctrl + +, or Ctrl + -, to increase or decrease icon size.






              share|improve this answer















              One more way how to change the size of desktop icons is directly from Nautilus:



              • Open nautilus

              • change the way of displayed icons to icon view NOT detailed view!

              • zoom icons using Ctrl + mouse wheel

              While zooming the icon view the icons are changed on the desktop at the same time.

              Zooming is not reflected while using detailed view!



              Edit: If you're on a laptop without scroll wheel, use Ctrl + +, or Ctrl + -, to increase or decrease icon size.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Feb 6 at 8:04

























              answered Jan 2 '18 at 9:40









              inoino

              1413




              1413












              • the most simple solution here.

                – H Aßdøµ
                May 29 '18 at 18:26

















              • the most simple solution here.

                – H Aßdøµ
                May 29 '18 at 18:26
















              the most simple solution here.

              – H Aßdøµ
              May 29 '18 at 18:26





              the most simple solution here.

              – H Aßdøµ
              May 29 '18 at 18:26











              0














              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.)



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


              2. 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).



              3. 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



              This 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!






              share|improve this answer





























                0














                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.)



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


                2. 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).



                3. 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



                This 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!






                share|improve this answer



























                  0












                  0








                  0







                  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.)



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


                  2. 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).



                  3. 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



                  This 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!






                  share|improve this answer















                  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.)



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


                  2. 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).



                  3. 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



                  This 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!







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Sep 14 '17 at 20:19









                  Nathan Smith

                  144119




                  144119










                  answered Jun 30 '17 at 2:48









                  CSmanicCSmanic

                  112




                  112





















                      0














                      This solution was design to address the issue in rhel 7.4 but might also be relevent here.
                      There seem to be a design decision regarding icons size acroding to this link. but that looks to me like a bug: https://bugzilla.redhat.com/show_bug.cgi?id=1478153



                      there is also a solution sugested here: https://access.redhat.com/solutions/3138541



                      But eventually what i did to address this is as followed:



                      sed -i '/default-zoom-level/n; s/large/standard/ ' /usr/share/glib-2.0/schemas/org.gnome.nautilus.gschema.xml && glib-compile-schemas /usr/share/glib-2.0/schemas/ >/dev/null 2>&1





                      share|improve this answer



























                        0














                        This solution was design to address the issue in rhel 7.4 but might also be relevent here.
                        There seem to be a design decision regarding icons size acroding to this link. but that looks to me like a bug: https://bugzilla.redhat.com/show_bug.cgi?id=1478153



                        there is also a solution sugested here: https://access.redhat.com/solutions/3138541



                        But eventually what i did to address this is as followed:



                        sed -i '/default-zoom-level/n; s/large/standard/ ' /usr/share/glib-2.0/schemas/org.gnome.nautilus.gschema.xml && glib-compile-schemas /usr/share/glib-2.0/schemas/ >/dev/null 2>&1





                        share|improve this answer

























                          0












                          0








                          0







                          This solution was design to address the issue in rhel 7.4 but might also be relevent here.
                          There seem to be a design decision regarding icons size acroding to this link. but that looks to me like a bug: https://bugzilla.redhat.com/show_bug.cgi?id=1478153



                          there is also a solution sugested here: https://access.redhat.com/solutions/3138541



                          But eventually what i did to address this is as followed:



                          sed -i '/default-zoom-level/n; s/large/standard/ ' /usr/share/glib-2.0/schemas/org.gnome.nautilus.gschema.xml && glib-compile-schemas /usr/share/glib-2.0/schemas/ >/dev/null 2>&1





                          share|improve this answer













                          This solution was design to address the issue in rhel 7.4 but might also be relevent here.
                          There seem to be a design decision regarding icons size acroding to this link. but that looks to me like a bug: https://bugzilla.redhat.com/show_bug.cgi?id=1478153



                          there is also a solution sugested here: https://access.redhat.com/solutions/3138541



                          But eventually what i did to address this is as followed:



                          sed -i '/default-zoom-level/n; s/large/standard/ ' /usr/share/glib-2.0/schemas/org.gnome.nautilus.gschema.xml && glib-compile-schemas /usr/share/glib-2.0/schemas/ >/dev/null 2>&1






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Feb 4 '18 at 16:13









                          Asaf MagenAsaf Magen

                          254314




                          254314



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Unix & Linux Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f250266%2frhel-7-gnome-shell-decrease-desktop-icon-size%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown






                              Popular posts from this blog

                              How to check contact read email or not when send email to Individual?

                              Bahrain

                              Postfix configuration issue with fips on centos 7; mailgun relay