mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
240c0e5fed
* sxiv automatically plays animations (part2) * Update imgview * Update imgview
71 lines
1.9 KiB
Bash
Executable file
71 lines
1.9 KiB
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Description: Open images in hovered directory and thumbnails
|
|
# open hovered image in sxiv or viu and browse other images in the directory
|
|
# Dependencies: imv (https://github.com/eXeC64/imv) or,
|
|
# sxiv (https://github.com/muennich/sxiv) or,
|
|
# viu (https://github.com/atanunq/viu), less
|
|
#
|
|
# Shell: POSIX compliant
|
|
# Author: Arun Prakash Jana
|
|
|
|
abspath() {
|
|
case "$1" in
|
|
/*) printf "%s\n" "$1";;
|
|
*) printf "%s\n" "$PWD/$1";;
|
|
esac
|
|
}
|
|
|
|
listimages() {
|
|
find -L "$(dirname "$target")" -maxdepth 1 -type f -iregex \
|
|
'.*\(jpe?g\|bmp\|webp\|png\|gif\)$' -print0 | sort -z
|
|
}
|
|
|
|
view_dir() {
|
|
target="$(abspath "$2")"
|
|
count="$(listimages | grep -a -m 1 -ZznF "$target" | cut -d: -f1)"
|
|
|
|
if [ -n "$count" ]; then
|
|
if [ "$1" = 'sxiv' ]; then
|
|
listimages | xargs -0 "$1" -an "$count" --
|
|
else
|
|
listimages | xargs -0 "$1" -n "$count" --
|
|
fi
|
|
else
|
|
shift
|
|
"$1" -- "$@" # fallback
|
|
fi
|
|
}
|
|
|
|
if [ -z "$1" ] || ! [ -s "$1" ]; then
|
|
printf "empty file"
|
|
read -r _
|
|
exit 1
|
|
fi
|
|
|
|
if uname | grep -q "Darwin"; then
|
|
if [ -f "$1" ]; then
|
|
open "$1" >/dev/null 2>&1 &
|
|
fi
|
|
# `imvr` is often callable as `imv` on Linux distros
|
|
# You might need to change the reference below
|
|
elif which imvr >/dev/null 2>&1; then
|
|
if [ -f "$1" ]; then
|
|
view_dir imvr "$1" >/dev/null 2>&1 &
|
|
elif [ -d "$1" ] || [ -h "$1" ]; then
|
|
imvr "$1" >/dev/null 2>&1 &
|
|
fi
|
|
elif which sxiv >/dev/null 2>&1; then
|
|
if [ -f "$1" ]; then
|
|
view_dir sxiv "$1" >/dev/null 2>&1 &
|
|
elif [ -d "$1" ] || [ -h "$1" ]; then
|
|
sxiv -aqt "$1" >/dev/null 2>&1 &
|
|
fi
|
|
elif which viu >/dev/null 2>&1; then
|
|
viu -n "$1" | less -R
|
|
else
|
|
printf "Please install imv/sxiv/viu and check their callable names match the plugin source"
|
|
read -r _
|
|
exit 2
|
|
fi
|