svg previews added

This commit is contained in:
Luke Smith 2018-07-08 13:28:58 -04:00
parent 8e1afed644
commit 16c66e574f

View file

@ -49,12 +49,8 @@ safepipe() { "$@"; test $? = 0 -o $? = 141; }
# Image previews, if enabled in ranger.
if [ "$preview_images" = "True" ]; then
case "$mimetype" in
# Image previews for SVG files, disabled by default.
###image/svg+xml)
### convert "$path" "$cached" && exit 6 || exit 1;;
# Image previews for image files. w3mimgdisplay will be called for all
# image files (unless overriden as above), but might fail for
# unsupported types.
image/svg+xml)
convert "$path" "$cached" && exit 6 || exit 1;;
image/*)
exit 7;;
# Image preview for video, disabled by default.: