perch is a small native Wayland image viewer for keeping reference images
on screen. It uses one resident daemon for any number of independent windows.
- Left drag: move the window
- Mouse wheel: resize the window
- Right click: close the window
Start the daemon once:
perch --daemonThen open one or more images:
perch image.png another.webpOr pipe an image through standard input:
cat image.png | perch --stdinImport perch.homeModules.default, then enable the program:
{
imports = [inputs.perch.homeModules.default];
programs.perch.enable = true;
}