From c725394c4025a0118c41d5053904f4bea517ba27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20T=C3=A1mara?= Date: Sat, 30 Nov 2024 13:49:46 -0500 Subject: [PATCH] imv: add page (#15002) Co-authored-by: Wiktor Perskawiec Co-authored-by: Juri Dispan --- pages/linux/imv.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/linux/imv.md diff --git a/pages/linux/imv.md b/pages/linux/imv.md new file mode 100644 index 0000000000..c507a13f01 --- /dev/null +++ b/pages/linux/imv.md @@ -0,0 +1,29 @@ +# imv + +> CLI image viewer for wayland and X11 aimed at tiling window managers. +> Handles multiple formats including Photoshop (PSD). +> More information: . + +- View multiple images: + +`imv {{path/to/image1.ext path/to/image2.ext ...}}` + +- View in fullscreen mode: + +`imv -f {{path/to/image.ext}}` + +- View images [r]ecursively from a path: + +`imv -r --slideshow {{path/to/path}}` + +- Open multiple images via `stdin`: + +`find . -type f -name "{{*.svg}}" | imv` + +- Make a slideshow from a directory showing each image for 10 seconds: + +`imv -t 10 {{path/to/directory}}` + +- View multiple images from the web: + +`curl -Osw '%{filename_effective}\n' '{{http://www.example.com/[1-10].jpg}}' | imv`