Nautilus Thumbnails Size Fix
Nautilus displays thumbnails very small when I have it set to 200% icon zoom in icon mode. I would prefer to have 5 columns of icons like this, but with larger picture and video icons:
When I set the icon zoom level to 400%, the thumbnail size is better, I only get 2 columns of icons on a 1080p screen!!
Is there any other way to increase the thumbnail sizes to take up proper screen space while keeping at least 5 columns of icons on the screen? To explain, you can see how much the 2nd image is wasting space in nautilus.
nautilus icons
add a comment |
Nautilus displays thumbnails very small when I have it set to 200% icon zoom in icon mode. I would prefer to have 5 columns of icons like this, but with larger picture and video icons:
When I set the icon zoom level to 400%, the thumbnail size is better, I only get 2 columns of icons on a 1080p screen!!
Is there any other way to increase the thumbnail sizes to take up proper screen space while keeping at least 5 columns of icons on the screen? To explain, you can see how much the 2nd image is wasting space in nautilus.
nautilus icons
add a comment |
Nautilus displays thumbnails very small when I have it set to 200% icon zoom in icon mode. I would prefer to have 5 columns of icons like this, but with larger picture and video icons:
When I set the icon zoom level to 400%, the thumbnail size is better, I only get 2 columns of icons on a 1080p screen!!
Is there any other way to increase the thumbnail sizes to take up proper screen space while keeping at least 5 columns of icons on the screen? To explain, you can see how much the 2nd image is wasting space in nautilus.
nautilus icons
Nautilus displays thumbnails very small when I have it set to 200% icon zoom in icon mode. I would prefer to have 5 columns of icons like this, but with larger picture and video icons:
When I set the icon zoom level to 400%, the thumbnail size is better, I only get 2 columns of icons on a 1080p screen!!
Is there any other way to increase the thumbnail sizes to take up proper screen space while keeping at least 5 columns of icons on the screen? To explain, you can see how much the 2nd image is wasting space in nautilus.
nautilus icons
nautilus icons
asked Oct 21 '14 at 14:30
KhaosDvorakKhaosDvorak
357316
357316
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
I have found a very simple solution to this problem.
After a single change, the above folder now looks like this when set to 200% icon zoom level:
It was as simple as changing the "thumbnail-size" value in "dconf-editor" for nautilus to a larger value.
To apply the change, make sure "dconf-editor" is installed in your system by typing the following into a terminal:
sudo apt-get install dconf-editor
After installing, type Alt - F2 to pull up the command dialogue, and type "dconf-editor" to search for it and click on it.
Once you have "dconf-editor" open, navigate to the following location in the left pane:
org > gnome > nautilus > icon-view
See this example image for the location:
The value that needs changed is the "thumbnail-size" value. I changed it from a default of 64 to 128. Depending on your display resolution, you may need to change it to a different value to make things look exactly the way you want. Smaller displays might need a value larger than 64, but 128 might be to large, so try something like 96.
Once that value is changed, exit "dconf-editor". Now the thumbnail cache needs to be cleared to allow that changes to take effect.
First close all Nautilus windows, then type the following code in a terminal (each line is a separate command).
nautilus -q
sudo rm -r ~/.cache/thumbnails/
The first command makes sure Nautilus is closed, and the second clears your thumbnail cache.
Note that this does not affect file or folder icons. Those will still appear to be smaller than the picture and video icons generated by Nautilus (or more correctly generated by ffmpegthumbnailer). This is still a huge improvement for thumbnails in Nautilus even with this shortcoming.
This fix worked on Ubuntu 14.04.1.
I do not think thesudo
will be necessary in any normal case, and it is always better to avoid it if possible.
– Arild
Mar 12 '15 at 21:17
add a comment |
Following up KhaosDvorak:
The following three commands fixes the problem without installing additional software. It worked great for me on RHEL 7.2 at least:
dconf write /org/gnome/nautilus/icon-view/thumbnail-size 128
nautilus -q
rm -r ~/.cache/thumbnails/
(This is not written as a comment to KhaosDvorak since I cannot comment due to just having signed up)
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
add a comment |
I have no doubt this fix worked for Ubuntu 14.04 but it does not work for Ubuntu 18.04.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f539802%2fnautilus-thumbnails-size-fix%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I have found a very simple solution to this problem.
After a single change, the above folder now looks like this when set to 200% icon zoom level:
It was as simple as changing the "thumbnail-size" value in "dconf-editor" for nautilus to a larger value.
To apply the change, make sure "dconf-editor" is installed in your system by typing the following into a terminal:
sudo apt-get install dconf-editor
After installing, type Alt - F2 to pull up the command dialogue, and type "dconf-editor" to search for it and click on it.
Once you have "dconf-editor" open, navigate to the following location in the left pane:
org > gnome > nautilus > icon-view
See this example image for the location:
The value that needs changed is the "thumbnail-size" value. I changed it from a default of 64 to 128. Depending on your display resolution, you may need to change it to a different value to make things look exactly the way you want. Smaller displays might need a value larger than 64, but 128 might be to large, so try something like 96.
Once that value is changed, exit "dconf-editor". Now the thumbnail cache needs to be cleared to allow that changes to take effect.
First close all Nautilus windows, then type the following code in a terminal (each line is a separate command).
nautilus -q
sudo rm -r ~/.cache/thumbnails/
The first command makes sure Nautilus is closed, and the second clears your thumbnail cache.
Note that this does not affect file or folder icons. Those will still appear to be smaller than the picture and video icons generated by Nautilus (or more correctly generated by ffmpegthumbnailer). This is still a huge improvement for thumbnails in Nautilus even with this shortcoming.
This fix worked on Ubuntu 14.04.1.
I do not think thesudo
will be necessary in any normal case, and it is always better to avoid it if possible.
– Arild
Mar 12 '15 at 21:17
add a comment |
I have found a very simple solution to this problem.
After a single change, the above folder now looks like this when set to 200% icon zoom level:
It was as simple as changing the "thumbnail-size" value in "dconf-editor" for nautilus to a larger value.
To apply the change, make sure "dconf-editor" is installed in your system by typing the following into a terminal:
sudo apt-get install dconf-editor
After installing, type Alt - F2 to pull up the command dialogue, and type "dconf-editor" to search for it and click on it.
Once you have "dconf-editor" open, navigate to the following location in the left pane:
org > gnome > nautilus > icon-view
See this example image for the location:
The value that needs changed is the "thumbnail-size" value. I changed it from a default of 64 to 128. Depending on your display resolution, you may need to change it to a different value to make things look exactly the way you want. Smaller displays might need a value larger than 64, but 128 might be to large, so try something like 96.
Once that value is changed, exit "dconf-editor". Now the thumbnail cache needs to be cleared to allow that changes to take effect.
First close all Nautilus windows, then type the following code in a terminal (each line is a separate command).
nautilus -q
sudo rm -r ~/.cache/thumbnails/
The first command makes sure Nautilus is closed, and the second clears your thumbnail cache.
Note that this does not affect file or folder icons. Those will still appear to be smaller than the picture and video icons generated by Nautilus (or more correctly generated by ffmpegthumbnailer). This is still a huge improvement for thumbnails in Nautilus even with this shortcoming.
This fix worked on Ubuntu 14.04.1.
I do not think thesudo
will be necessary in any normal case, and it is always better to avoid it if possible.
– Arild
Mar 12 '15 at 21:17
add a comment |
I have found a very simple solution to this problem.
After a single change, the above folder now looks like this when set to 200% icon zoom level:
It was as simple as changing the "thumbnail-size" value in "dconf-editor" for nautilus to a larger value.
To apply the change, make sure "dconf-editor" is installed in your system by typing the following into a terminal:
sudo apt-get install dconf-editor
After installing, type Alt - F2 to pull up the command dialogue, and type "dconf-editor" to search for it and click on it.
Once you have "dconf-editor" open, navigate to the following location in the left pane:
org > gnome > nautilus > icon-view
See this example image for the location:
The value that needs changed is the "thumbnail-size" value. I changed it from a default of 64 to 128. Depending on your display resolution, you may need to change it to a different value to make things look exactly the way you want. Smaller displays might need a value larger than 64, but 128 might be to large, so try something like 96.
Once that value is changed, exit "dconf-editor". Now the thumbnail cache needs to be cleared to allow that changes to take effect.
First close all Nautilus windows, then type the following code in a terminal (each line is a separate command).
nautilus -q
sudo rm -r ~/.cache/thumbnails/
The first command makes sure Nautilus is closed, and the second clears your thumbnail cache.
Note that this does not affect file or folder icons. Those will still appear to be smaller than the picture and video icons generated by Nautilus (or more correctly generated by ffmpegthumbnailer). This is still a huge improvement for thumbnails in Nautilus even with this shortcoming.
This fix worked on Ubuntu 14.04.1.
I have found a very simple solution to this problem.
After a single change, the above folder now looks like this when set to 200% icon zoom level:
It was as simple as changing the "thumbnail-size" value in "dconf-editor" for nautilus to a larger value.
To apply the change, make sure "dconf-editor" is installed in your system by typing the following into a terminal:
sudo apt-get install dconf-editor
After installing, type Alt - F2 to pull up the command dialogue, and type "dconf-editor" to search for it and click on it.
Once you have "dconf-editor" open, navigate to the following location in the left pane:
org > gnome > nautilus > icon-view
See this example image for the location:
The value that needs changed is the "thumbnail-size" value. I changed it from a default of 64 to 128. Depending on your display resolution, you may need to change it to a different value to make things look exactly the way you want. Smaller displays might need a value larger than 64, but 128 might be to large, so try something like 96.
Once that value is changed, exit "dconf-editor". Now the thumbnail cache needs to be cleared to allow that changes to take effect.
First close all Nautilus windows, then type the following code in a terminal (each line is a separate command).
nautilus -q
sudo rm -r ~/.cache/thumbnails/
The first command makes sure Nautilus is closed, and the second clears your thumbnail cache.
Note that this does not affect file or folder icons. Those will still appear to be smaller than the picture and video icons generated by Nautilus (or more correctly generated by ffmpegthumbnailer). This is still a huge improvement for thumbnails in Nautilus even with this shortcoming.
This fix worked on Ubuntu 14.04.1.
answered Oct 21 '14 at 14:49
KhaosDvorakKhaosDvorak
357316
357316
I do not think thesudo
will be necessary in any normal case, and it is always better to avoid it if possible.
– Arild
Mar 12 '15 at 21:17
add a comment |
I do not think thesudo
will be necessary in any normal case, and it is always better to avoid it if possible.
– Arild
Mar 12 '15 at 21:17
I do not think the
sudo
will be necessary in any normal case, and it is always better to avoid it if possible.– Arild
Mar 12 '15 at 21:17
I do not think the
sudo
will be necessary in any normal case, and it is always better to avoid it if possible.– Arild
Mar 12 '15 at 21:17
add a comment |
Following up KhaosDvorak:
The following three commands fixes the problem without installing additional software. It worked great for me on RHEL 7.2 at least:
dconf write /org/gnome/nautilus/icon-view/thumbnail-size 128
nautilus -q
rm -r ~/.cache/thumbnails/
(This is not written as a comment to KhaosDvorak since I cannot comment due to just having signed up)
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
add a comment |
Following up KhaosDvorak:
The following three commands fixes the problem without installing additional software. It worked great for me on RHEL 7.2 at least:
dconf write /org/gnome/nautilus/icon-view/thumbnail-size 128
nautilus -q
rm -r ~/.cache/thumbnails/
(This is not written as a comment to KhaosDvorak since I cannot comment due to just having signed up)
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
add a comment |
Following up KhaosDvorak:
The following three commands fixes the problem without installing additional software. It worked great for me on RHEL 7.2 at least:
dconf write /org/gnome/nautilus/icon-view/thumbnail-size 128
nautilus -q
rm -r ~/.cache/thumbnails/
(This is not written as a comment to KhaosDvorak since I cannot comment due to just having signed up)
Following up KhaosDvorak:
The following three commands fixes the problem without installing additional software. It worked great for me on RHEL 7.2 at least:
dconf write /org/gnome/nautilus/icon-view/thumbnail-size 128
nautilus -q
rm -r ~/.cache/thumbnails/
(This is not written as a comment to KhaosDvorak since I cannot comment due to just having signed up)
answered Feb 3 '16 at 17:55
Tormod LandetTormod Landet
311
311
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
add a comment |
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
This worked for me today on a clean updated install of CentOS 7 with the gnome desktop, thanks Tormod Landet!
– KhaosDvorak
Jul 2 '17 at 15:19
add a comment |
I have no doubt this fix worked for Ubuntu 14.04 but it does not work for Ubuntu 18.04.
add a comment |
I have no doubt this fix worked for Ubuntu 14.04 but it does not work for Ubuntu 18.04.
add a comment |
I have no doubt this fix worked for Ubuntu 14.04 but it does not work for Ubuntu 18.04.
I have no doubt this fix worked for Ubuntu 14.04 but it does not work for Ubuntu 18.04.
answered 4 hours ago
HarlinHarlin
112
112
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f539802%2fnautilus-thumbnails-size-fix%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