Browse Source

Add webview script for urlview

master
krrishg 4 years ago
parent
commit
0e0b1515b3
  1. 16
      webview

16
webview

@ -0,0 +1,16 @@
#!/bin/sh
ext="${1##*.}"
images="png jpg jpeg"
videos="mkv mp4 gif"
download="mp3 flac pdf"
if echo $images | grep -w $ext > /dev/null; then
tsp feh "$1" > /dev/null &
elif echo $videos | grep -w $ext > /dev/null; then
tsp mpv --quiet "$1" > /dev/null &
elif echo $download | grep -w $ext > /dev/null; then
tsp wget "$1" > /dev/null &
else
tsp $BROWSER "$1" > /dev/null &
fi
Loading…
Cancel
Save