aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-14 14:41:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-14 14:41:55 +1200
commit72dc87a0224345de67ba32cce2ec1477963e12e9 (patch)
tree89a817e340bfcbd5e8ecd2929a774693ebd21b36 /bin
parentHave urlh(1) convert line endings (diff)
downloaddotfiles-72dc87a0224345de67ba32cce2ec1477963e12e9.tar.gz
dotfiles-72dc87a0224345de67ba32cce2ec1477963e12e9.zip
Stop feh(1) handling GIFs
(Because it doesn't)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/br1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/br b/bin/br
index e2a746c1..d092eb6b 100755
--- a/bin/br
+++ b/bin/br
@@ -7,6 +7,7 @@ mt=$(urlmt "$url")
# If the MIME type is an image, load it in feh(1)
case $mt in
+ image/gif) ;;
image/*)
curl -- "$url" | feh - && exit
;;