14 lines
300 B
Bash
14 lines
300 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
file="$1"
|
||
|
|
case "$file" in
|
||
|
|
*.png|*.jpg|*.jpeg|*.gif|*.bmp|*.tiff|*.webp)
|
||
|
|
# 260227: img2sixel is (currently) not supported by kitty
|
||
|
|
# img2sixel -w "$(tput cols)" "$file"
|
||
|
|
kitty +kitten icat "$file"
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
echo "Unsupported image format"
|
||
|
|
exit 1
|
||
|
|
;;
|
||
|
|
esac
|