webview update

This commit is contained in:
Luke Smith 2018-03-09 15:47:03 -07:00
parent e8f2d08a8e
commit 0ce19eaeab

View file

@ -1,23 +1,29 @@
#!/bin/bash #!/bin/bash
# Feed script a url. # Feed script a url.
# Opens the url with xdg-open unless it is an image, # If an image, it will view in feh,
# in which case it downloads in feh. # if a video or gif, it will view in mpv
# if a music file or pdf, it will download,
# otherwise it opens link in browser.
# List of sites that will be opened in mpv.
vidsites="youtube.com
\|hooktube.com
\|bitchute.com
"
detectVidSite() { (echo "$1" | grep "$vidsites">/dev/null) && mpv -quiet $1 > /dev/null & }
ext="${1##*.}" ext="${1##*.}"
mpvFiles="mkv mp4 gif" mpvFiles="mkv mp4 gif"
fehFiles="png jpg jpeg jpe" fehFiles="png jpg jpeg jpe"
wgetFiles="mp3 flac opus mp3?source=feed pdf" wgetFiles="mp3 flac opus mp3?source=feed pdf"
pgrep i3 ifi3="i3 exec"
if echo $fehFiles | grep -w $ext > /dev/null; then if echo $fehFiles | grep -w $ext > /dev/null; then
nohup feh "$1" >/dev/null & feh "$1" >/dev/null &
#elif [[ "$ext" == "gif" ]]; then
elif echo $mpvFiles | grep -w $ext > /dev/null; then elif echo $mpvFiles | grep -w $ext > /dev/null; then
nohup mpv --loop --quiet "$1" > /dev/null & mpv --loop --quiet "$1" > /dev/null &
elif echo $wgetFiles | grep -w $ext > /dev/null; then elif echo $wgetFiles | grep -w $ext > /dev/null; then
nohup wget "$1" >/dev/null & wget "$1" >/dev/null &
else else
nohup $BROWSER "$1" >/dev/null & detectVidSite "$1"
fi fi