You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
261 B

#!/bin/sh
case $1 in
*png|*jpg|*jpe|*jpeg|*gif)
curl -sL "$1" > "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")" && pqiv -i -t -f "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")" && rm "/tmp/$(echo "$1" | sed "s/.*\///;s/%20/ /g")"
;;
*)
$BROWSER $1
;;
esac