mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 12:18:41 -05:00
90 lines
3.1 KiB
Bash
90 lines
3.1 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Preview script for nnn
|
||
|
|
||
|
TMP="/tmp/nnn_thumb.png"
|
||
|
|
||
|
# Handy functions for convenience
|
||
|
preview_img() {
|
||
|
if [ "$TERM" = "xterm-kitty" ]
|
||
|
then
|
||
|
convert -- "$1" "$TMP"
|
||
|
kitty icat --silent "$1"
|
||
|
else
|
||
|
mediainfo "$1" || exiftool "$1" || identify "$1"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
preview_vid() {
|
||
|
if [ "$TERM" = "xterm-kitty" ]
|
||
|
then
|
||
|
ffmpegthumbnailer -i "$1" -o "$TMP" -s 0
|
||
|
kitty icat --silent "$TMP"
|
||
|
else
|
||
|
mediainfo "$1" || exiftool "$1" || fprobe -pretty "$1" 2>&1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
# Clear the old image before processing, otherwise shit will happen
|
||
|
if [ "$TERM" = "xterm-kitty" ]
|
||
|
then
|
||
|
kitty icat --silent --clear
|
||
|
fi
|
||
|
|
||
|
case "$1" in
|
||
|
# First check common extensions
|
||
|
*.png|*.jpg|*.bmp|*.jpeg|*.gif|*.xpm)
|
||
|
if [ "$TERM" = "xterm-kitty" ]
|
||
|
then
|
||
|
kitty icat --silent "$1"
|
||
|
else
|
||
|
mediainfo "$1" || exiftool "$1" || identify "$1"
|
||
|
fi ;;
|
||
|
*.wav|*.mp3|*.flac|*.m4a|*.ape|*.ac3|*.og[agx]|*.spx|*.dsf|*.opus|*.dff|*.wma|*.wvc?) mediainfo "$1" || exiftool "$1" ;;
|
||
|
*.avi|*.mp4|*.wmv|*.dat|*.3gp|*.vob|*.ogv|*.mkv|*.mpe?g|*.fl[icv]|*.m2v|*.webm|*.m?ts|*.r[am]|*.qt|*.divx|*.as[fx]|*.m4v|*.mov) preview_vid "$1" ;;
|
||
|
*.pdf) mutool draw -F txt -i -- "$1" 1-10 || pdftotext -l 10 -nopgbrk -q -- "$1" - ;;
|
||
|
*.ps) pstotext "$1" || ps2ascii "$1" ;;
|
||
|
*.epub|*.fb2) pandoc -s -t markdown -- "$1" ;;
|
||
|
*.djvu) djvutxt "$1" || exiftool "$1" ;;
|
||
|
*.html|*.xhtml|*.htm) pandoc -s -t markdown -- "$1" || lynx -dump -- "$1" ;;
|
||
|
*.mkd|*.md|*.markdown) glow -s dark "$1" || mdcat "$1" ;;
|
||
|
*.ipynb) notedown --from notebook "$1" --to markdown | pandoc -f markdown -t plain ;;
|
||
|
*.torrent) dumptorrent -v "$1" || transmission-show -- "$1" ;;
|
||
|
*.zip|*.war|*.ear|*.oxt|*.tar|*.tgz|*.tar.gz|*.tbz2|*.tar.bz2|*.tar.txz|*.txz|*.rar|*.7z|*.ace|*.rpm|*.deb|*.xbps|*.Z|*.lzo|*.lzma|*.lha|*.cpio|*.jar|*.lz|*.lzh) atool -l -q "$1" | tail -n +3 | awk -F' ' '{print $NF}' ;;
|
||
|
*.iso) isoinfo -l -i "$1" ;;
|
||
|
*.doc) catdoc -- "$1" ;;
|
||
|
*.docx) pandoc -s -t markdown -- "$1" ;;
|
||
|
*.odt|*.ott|*.s[xt]w|*.sxc) pandoc -s -t markdown -- "$1" || odt2txt "$1" ;;
|
||
|
*.xls) xls2csv -- "$1" ;;
|
||
|
*.xlsx) xlsx2csv -- "$1" ;;
|
||
|
*.ods|*.odp|*.sxw) pandoc -s -t markdown -- "$1" ;;
|
||
|
*.json) jq --color-output . "$1" || python -m json.tool -- "$1" ;;
|
||
|
# Then fallback to mimetypes
|
||
|
*)
|
||
|
mimetype=$(file --dereference --brief --mime-type -- "$1")
|
||
|
case "$mimetype" in
|
||
|
inode/directory)
|
||
|
tree -La 1 -C --dirsfirst "$1" ;;
|
||
|
application/zip|application/x-tar|application/x-gzip)
|
||
|
atool -l -q "$1" | tail -n +3 | awk -F' ' '{print $NF}' ;;
|
||
|
image/vnd.djvu)
|
||
|
djvutxt "$1" || exiftool "$1" ;;
|
||
|
image/*)
|
||
|
preview_img "$1" ;;
|
||
|
application/font*|application/*opentype|font/*)
|
||
|
if [ "$TERM" = "xterm-kitty" ]
|
||
|
then
|
||
|
genfontimage "$1" "$TMP"
|
||
|
kitty icat --silent "$TMP"
|
||
|
else
|
||
|
echo '----- Font Classification -----' && file --dereference --brief -- "$1"
|
||
|
fi ;;
|
||
|
video/*)
|
||
|
preview_vid "$1" ;;
|
||
|
text/* | */xml)
|
||
|
bat --style plain --color=always "$1" ;;
|
||
|
*)
|
||
|
echo '----- File Type Classification -----' && file --dereference --brief -- "$1" ;;
|
||
|
esac ;;
|
||
|
esac
|