1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-03-09 16:29:23 +00:00
nnn/plugins/imgsxiv

21 lines
482 B
Text
Raw Normal View History

2019-01-03 23:05:51 +05:30
#!/usr/bin/env sh
# Description: Open images in hovered directory and thumbnails
# open hovered image in sxiv and browse other images in the directory
2019-01-03 23:05:51 +05:30
#
2019-04-18 10:29:47 +05:30
# Shell: POSIX compliant
2019-01-03 23:05:51 +05:30
# Author: Arun Prakash Jana
if command -v sxiv >/dev/null 2>&1; then
if ! [ -z "$1" ]; then
if [ -f "$1" ]; then
sxiv -q "$PWD"
elif [ -d "$1" ] || [ -h "$1" ]; then
sxiv -qt "$1"
fi
fi
else
echo "sxiv missing"
2019-11-22 02:14:25 +05:30
read -r _
fi