I use stock Ubuntu 20.04.2 with the Gnome 3.36.8 desktop (according to gnome-control-center's About tab).
Nautilus version: 3.36.3
Dismay:
I have a hard time organizing my photos in Nautilus, because the largest possible image thumbnail setting results in thumbnails displayed at an effective 164px width. (All the while the actual thumbnail .png files, in ~/.cache/thumbnails/large/
, are still being saved with the more sensible, earlier default 256px width. Yet someone decided that at display time, they need to be shrinked to 164px.)
I have found questions about enlarging Nautilus thumbnails:
- How to get bigger photos' thumbnails in Nautilus?
- recommends using alternative file manager
- Nautilus: Show image thumbnails at more than 200% size
- the gsettings way does not work any more
- there is no
org.gnome.nautilus.icon-view thumbnail-size
any more - even if it doesn't appear, probably it's set to 256px anyways, that's why actual thumbnail .png's in
~/.cache
are that wide; the resizing happens on the frontend, at display time
- there is no
- also recommends switching to alternate desktop
- the gsettings way does not work any more
My use-case:
- Right now I'm not ready to switch desktops / to reinstall.
- I have already invested 3 months of my life into making my Gnome desktop usable, at a very critical part of my life where I desperately should be focusing on other (real-life) challenges already.
- I have only 19GB left on my
/
partition, I would be happy if I would not need to fill it up to the brim.
While I use Gthumb, I find it less than optimal for file-manager-related tasks (moving files about); at the same time I don't want to use Shotwell, because it's very inflexible (thanks to its "import" procedure).
The recommended alternative file managers all seem to pull in their entire corresponding desktops:
- Caja: MATE desktop
- Nemo: Cinnamon desktop
- Thunar: XFCE desktop
This seems to be a huge overhead and therefore an inefficient solution.
Question:
Is there an efficient way for me to enjoy 256px wide thumbnails in a decent file manager with a decent image viewer app integration?
(If you are going to suggest building Nautilus from source, I will need an ELI5 walkaround of that, because I have never in my life built anything from source.)
apt install
's-s
(simulate) argument to investigate. In case ofnemo
,--no-install-recommends
leaves away the following packages:cinnamon-l10n gist hddtemp hwdata inxi nemo-fileroller tree
What still gets installed however is:cinnamon-desktop-data libcinnamon-desktop4 libgail-3-0 libnemo-extension1 libxapp1 nemo-data xapps-common
– Levente Apr 17 '21 at 16:38thunar
,--no-install-recommends
leaves away:libtumbler-1-0 libxfce4panel-2.0-4 libxfce4util-bin thunar-volman tumbler tumbler-common
(ironically, the thumbnailer!), but still installs:exo-utils libexo-2-0 libexo-common libexo-helpers libthunarx-3-0 libxfce4ui-2-0 libxfce4ui-common libxfce4util-common libxfce4util7 libxfconf-0-3 thunar-data xfconf
– Levente Apr 17 '21 at 16:44cinnamon-desktop-data
orlibcinnamon-desktop4
are not the full cinnamon-desktop.sudo apt --no-install-recommends install nemo
is only a 1.7 MB download in my Kubuntu. The download size forthunar
is also 1.7 MB, which means it won't bloat the GNOME desktop. – Archisman Panigrahi Apr 17 '21 at 16:44nemo
, the install with recommended elements would be only30MB
, while with--no-install-recommends
it would be7MB
, I went with installing with the recommended stuff. Can it bite me in the future? Do you think it could download the full Cinnamon desktop retroactively one day? – Levente Apr 17 '21 at 16:58sudo apt install nemo
, so it came with the recommended stuff, and it was only 30MB. And even after a full reboot, on the purple GDM login screen, in the small cogwheel icon, no additional "Cinnamon deskop" option shown up. (It still lists only gnome-classic, Ubuntu, and Ubuntu on Wayland). Your guidance was essential, pointing out thatlibcinnamon-desktop4
is not the entire desktop. Thank you! – Levente Apr 17 '21 at 17:29