RHEL 7, GNOME shell - decrease desktop icon size
Clash Royale CLAN TAG#URR8PPP
Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?
gnome-shell icons
add a comment |
Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?
gnome-shell icons
add a comment |
Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?
gnome-shell icons
Question: I recently installed RHEL 7.2 and.. the icons on the desktop are HUGE. How can I decrease their size?
gnome-shell icons
gnome-shell icons
asked Dec 18 '15 at 17:42
LoukiosValentine79LoukiosValentine79
43921031
43921031
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
Run this in a terminal :
gsettings set org.gnome.nautilus.icon-view default-zoom-level small
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
add a comment |
Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small
2
Also note that nautilus now has this option built in
– smac89
Dec 22 '16 at 23:09
add a comment |
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
NOTdetailed 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.
the most simple solution here.
– H Aßdøµ
May 29 '18 at 18:26
add a comment |
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 ****
- 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.)
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.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).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!
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Run this in a terminal :
gsettings set org.gnome.nautilus.icon-view default-zoom-level small
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
add a comment |
Run this in a terminal :
gsettings set org.gnome.nautilus.icon-view default-zoom-level small
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
add a comment |
Run this in a terminal :
gsettings set org.gnome.nautilus.icon-view default-zoom-level small
Run this in a terminal :
gsettings set org.gnome.nautilus.icon-view default-zoom-level small
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
add a comment |
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
add a comment |
Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small
2
Also note that nautilus now has this option built in
– smac89
Dec 22 '16 at 23:09
add a comment |
Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small
2
Also note that nautilus now has this option built in
– smac89
Dec 22 '16 at 23:09
add a comment |
Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small
Just go to "dconf-editor", then org -> gnome -> nautilus -> icon-view, and set the default-zoom-level small
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
add a comment |
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
add a comment |
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
NOTdetailed 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.
the most simple solution here.
– H Aßdøµ
May 29 '18 at 18:26
add a comment |
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
NOTdetailed 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.
the most simple solution here.
– H Aßdøµ
May 29 '18 at 18:26
add a comment |
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
NOTdetailed 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.
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
NOTdetailed 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.
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
add a comment |
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
add a comment |
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 ****
- 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.)
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.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).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!
add a comment |
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 ****
- 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.)
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.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).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!
add a comment |
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 ****
- 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.)
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.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).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!
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 ****
- 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.)
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.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).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!
edited Sep 14 '17 at 20:19
Nathan Smith
144119
144119
answered Jun 30 '17 at 2:48
CSmanicCSmanic
112
112
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Feb 4 '18 at 16:13
Asaf MagenAsaf Magen
254314
254314
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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