dots-of-war/files/scripts/preview.sh
2020-10-30 22:02:38 +02:00

22 lines
460 B
Bash
Executable file

#! /bin/sh
type="$(file --mime-type "$@")"
case "$type" in
*text*)
bat --color always --plain --theme gruvbox "$@"
;;
*image* | *pdf)
[ "$(command -v timg)" ] && \
timg -g50x50 -E -F "$@" || \
[ "$(command -v catimg)" ] && \
catimg -w 100 -r 2 "$@" || \
echo "Install timg or catimg to view images!"
;;
*directory*)
exa --icons -1 --color=always "$@"
;;
*)
echo "unknown file format"
;;
esac