diff --git a/.config/ranger/scope.sh b/.config/ranger/scope.sh index c10ebfdc..c3dee9ad 100755 --- a/.config/ranger/scope.sh +++ b/.config/ranger/scope.sh @@ -105,9 +105,10 @@ case "$mimetype" in # Display information about media files: video/* | audio/*) - exiftool "$path" && exit 5 # Use sed to remove spaces so the output fits into the narrow window - try mediainfo "$path" && { dump | trim | sed 's/ \+:/: /;'; exit 5; } || exit 1;; + try mediainfo "$path" && { dump | trim | sed 's/ \+:/: /;'; exit 5; } + exiftool "$path" && exit 5 + exit 1;; esac exit 1