2018-01-22 01:29:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Feed script a url.
|
2018-03-09 22:47:03 +00:00
|
|
|
# If an image, it will view 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
|
|
|
|
"
|
2018-01-22 01:29:48 +00:00
|
|
|
ext="${1##*.}"
|
|
|
|
mpvFiles="mkv mp4 gif"
|
|
|
|
fehFiles="png jpg jpeg jpe"
|
|
|
|
wgetFiles="mp3 flac opus mp3?source=feed pdf"
|
|
|
|
|
|
|
|
if echo $fehFiles | grep -w $ext > /dev/null; then
|
2018-03-09 22:47:03 +00:00
|
|
|
feh "$1" >/dev/null &
|
2018-01-22 01:29:48 +00:00
|
|
|
elif echo $mpvFiles | grep -w $ext > /dev/null; then
|
2018-03-09 22:47:03 +00:00
|
|
|
mpv --loop --quiet "$1" > /dev/null &
|
2018-01-22 01:29:48 +00:00
|
|
|
elif echo $wgetFiles | grep -w $ext > /dev/null; then
|
2018-03-09 22:47:03 +00:00
|
|
|
wget "$1" >/dev/null &
|
2018-03-12 04:16:42 +00:00
|
|
|
elif echo "$@" | grep "$vidsites">/dev/null; then
|
2018-03-10 00:55:41 +00:00
|
|
|
mpv -quiet "$1" > /dev/null &
|
2018-01-22 01:29:48 +00:00
|
|
|
else
|
2018-03-10 00:55:41 +00:00
|
|
|
$BROWSER "$1" 2>/dev/null & disown
|
2018-01-22 01:29:48 +00:00
|
|
|
fi
|