nnn/plugins/sxiv

21 lines
483 B
Plaintext
Raw Normal View History

2019-01-03 17:35:51 +00:00
#!/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 17:35:51 +00:00
#
2019-04-18 04:59:47 +00:00
# Shell: POSIX compliant
2019-01-03 17:35:51 +00:00
# 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"
read dummy
fi