diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2016-01-15 16:16:10 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2016-01-15 16:16:10 +0000 |
commit | 58fe28b650dfcdd3efe78fb0559cab5b7e811bb5 (patch) | |
tree | 73d290727b720e39b36c8165e1ea9202374726f3 /README.md | |
parent | efa33ab844a09f05907a5de2d66ed7331c4f8ec9 (diff) | |
parent | 1ae8a7fe6030771352e347e7564639ea181802ba (diff) | |
download | imv-58fe28b650dfcdd3efe78fb0559cab5b7e811bb5.tar.gz |
Merge pull request #76 from czarkoff/loader
Loading image data from standard input
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -20,13 +20,16 @@ Usage imv image1.png another_image.jpeg yet_another.TIFF ### Opening images via stdin - find . "*.png" | imv - + find . "*.png" | imv ### Open an image fullscreen imv -f image.jpeg ### Viewing images in a random order - find . "*.png" | shuf | imv - + find . "*.png" | shuf | imv + +### Viewing images from stdin + curl http://somesi.te/img.png | imv - ### Image picker imv can be used to select images in a pipeline by using the `p` hotkey to print @@ -35,13 +38,13 @@ to list the remaining paths on exit for a "open set of images, close unwanted ones with `x`, then quit imv to pass the remaining images through" workflow. #### Picking a wallpaper - custom-set-wallpaper-script "$(find ./wallpaper -type f -name '*.jpg' | imv - | tail -n1)" + custom-set-wallpaper-script "$(find ./wallpaper -type f -name '*.jpg' | imv | tail -n1)" #### Deleting unwanted images - find -type f -name '*.jpg' | imv - | xargs rm -v + find -type f -name '*.jpg' | imv | xargs rm -v #### Choosing pictures to email - find ./holiday_pics -type f -name '*.jpg' | imv - | xargs cp -t ~/outbox + find ./holiday_pics -type f -name '*.jpg' | imv | xargs cp -t ~/outbox ### Slideshow |