2021-12-11 00:59:45 +00:00
|
|
|
#!/bin/sh
|
2021-11-06 23:28:57 +00:00
|
|
|
# Compare select terminal image viewers
|
|
|
|
# Args: <height> [images]...
|
2021-12-11 00:59:45 +00:00
|
|
|
set -x
|
|
|
|
size=10
|
|
|
|
if test $# -eq 0
|
2022-10-13 19:57:22 +00:00
|
|
|
then args=$DATA/4-media/images/*.png
|
2021-12-11 00:59:45 +00:00
|
|
|
else echo "$1" | grep -v -e "\." -e "/" && size=$1 && shift
|
|
|
|
fi
|
|
|
|
cols="$(expr $(tput cols) / $size / 3 \| 1)"
|
|
|
|
timg --rotate=exif --title --grid=${cols} -g $(tput cols)x$(expr $size \* $cols + 4) "$@" $args
|
|
|
|
viu --name -h $size "$@" $args
|
|
|
|
tiv -h $size -c $(expr $cols + 1) "$@" $args
|