1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 20:55:51 +02:00

imv: add page (#15002)

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
Igor Támara 2024-11-30 13:49:46 -05:00 committed by GitHub
parent fea387d6e6
commit c725394c40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

29
pages/linux/imv.md Normal file
View file

@ -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: <https://sr.ht/~exec64/imv>.
- 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`