Phillip Berndt
Phillip Berndt
I'm thinking something like ```sh #!/bin/sh # mkfifo _pqiv_fifo cleanup() { rm _pqiv_fifo; } trap cleanup EXIT (while true; do cat _pqiv_fifo; done) | pqiv -r ``` for the server...
If nnn will drive this, why not just have it own the process and control it? ranger does it this way. I have an advanced version of ranger's integration at...
So to clarify, you're looking for a scale mode that touches neither the window size nor adjusts the scaling to scale small images up, but still scales large ones down?
ImageMagick and GraphicsMagick are not API compatible. I looked into support once and found that for GraphicsMagick I'd basically have to fork the ImageMagick backend and create a separate one...
Hey :santa: I just pushed a branch [`gmwand`](https://github.com/phillipberndt/pqiv/tree/gmwand) which contains experimental support for GraphicsMagick. I only tested basic images and PDFs, that looks good so far.
I am *very* close to being convinced that embedding a lua interpreter into pqiv is a good idea ;-) For now, this is indeed not possible any easier, except if...
Could you try building pqiv from source and running it in a gdb session, please? That is, start pqiv as `gdb --args ./pqiv `, type `r` to start it, and...
The system assumes pqiv's configure script is autotools-based, which it is not. I have pushed a commit that improves the compatibility with autotools. Try bumping the git revision the package...
That does help :-) So the bug is for sure related to PDF files, and it only affects you with specific versions of pqiv's dependencies - my binary is built...
Thanks again. Right now this looks as if it's really the poppler dependency and not pqiv which is at fault. Final two things to try to make me feel confident...