Solved Default program for viewing images

And some may be interested...
Including something just tried and not yet deleted.
Code:
% ldd /usr/local/bin/gimv | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      34
% ldd /usr/local/bin/gimp | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      46
% ldd /usr/local/bin/gthumb | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      58
% ldd /usr/local/bin/krita | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      68
% ldd /usr/local/bin/gwenview | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      83
% ldd /usr/local/bin/phototonic | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      25
% ldd /usr/local/bin/eom | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      52
% ldd /usr/local/bin/ristretto | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      49
%
 
Just for your convenience NOT to count by yourself:
Code:
% ldd /usr/local/bin/gimv | cut -w -f 4 | sort | uniq | xargs pkg which -o | cut -w -f 6 | sort | uniq | sed -e '/^the/d' | wc -l
      34
%

How long did it take for you to come with that?

Impressive!
 
Today I use feh and sxiv, before I used xv. Just for first inspection of an image, for more, ImageMagick or GraphicsMagick that support other formats and have more functionality.
 
Man I haven't seen anyone mention it but I would say that nomacs would be my favorite for desktop GUI usage and timg for terminal viewing quickly; mostly to get an idea of what the image is.

Nomacs though is pretty cool for being able to use it across pretty much all OSes and it's code base and project structure are pretty easy to read through.

Also built in good darkmode support.
 
Back
Top