viu
viu copied to clipboard
Terminal image viewer with native support for iTerm and Kitty
I used [tiv](https://github.com/radare/tiv) in the past. I now wanted to optionally support viu. In tiv -h -w are max height/max width. I think this is what most expect. My use...
At least for random pngs. testcase: ``` #! /usr/bin/env python3 from PIL import Image import subprocess, io solid_black = Image.new('RGBA', (50,50), (0, 0, 0, 255)) solid_red = Image.new('RGBA', (50,50), (255,...
In #10 it was proposed to add a transparent background to transparent pictures. This is very cool, unless when the image has more or less the same color has the...
As in the title, this would be for notifying users in scripts that they should not use the 'displayimg' option of a script or program because it would look ugly....
Fix #96 - Add support Fix #68 - Provide musl binaries Fix #64 - Add windows binaries Working action here: https://github.com/patrickelectric/viu/actions/runs/2706757736 Signed-off-by: Patrick José Pereira
It would be nice to have such binaries with cross action
# ❓ Question * How could we install viu in alpine linux? ```console apk add viu ```
- Added Dockerfile with multi architecture support with args ( eg. `x86_64` https://doc.rust-lang.org/nightly/rustc/platform-support.html) - Updated readme.md with docker build and run instruction
Great tool! It would be great to be able to show a directory of images in a grid view. Something like: ``` viu * -h 6 -n -rows 3 -cols...
Got this error on Ubuntu 18.04, using https://github.com/atanunq/viu/releases/download/v1.3.0/viu ``` viu: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by viu) ``` Attempt to fix with, but didn't work: ```bash apt install -y...