voidrice/.scripts/linkhandler

38 lines
1.1 KiB
Text
Raw Normal View History

#!/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.
scihub="http://sci-hub.tw/"
2018-03-09 22:47:03 +00:00
# List of sites that will be opened in mpv.
vidsites="youtube.com
\|hooktube.com
\|bitchute.com
"
# List of academic sites whose pdfs can be dled via sci-hub.
academic="springer.com"
ext="${1##*.}"
2018-04-01 16:11:07 +00:00
mpvFiles="mkv mp4 gif webm"
fehFiles="png jpg jpeg jpe"
wgetFiles="mp3 flac opus mp3?source=feed pdf"
if echo $fehFiles | grep -w $ext > /dev/null; then
2018-06-27 14:11:55 +00:00
setsid nohup feh "$1" >/dev/null & disown
elif echo $mpvFiles | grep -w $ext > /dev/null; then
2018-06-27 14:11:55 +00:00
setsid nohup mpv -quiet "$1" > /dev/null & disown
elif echo $wgetFiles | grep -w $ext > /dev/null; then
2018-04-01 16:11:07 +00:00
wget "$1" >/dev/null & disown
2018-03-12 04:16:42 +00:00
elif echo "$@" | grep "$vidsites">/dev/null; then
2018-06-27 14:11:55 +00:00
setsid nohup mpv -quiet "$1" > /dev/null & disown
elif echo "$@" | grep "$academic">/dev/null; then
curl -sO $(curl -s "$scihub""$@" | grep location.href | grep -o http.*pdf) & disown
else
2018-06-27 14:11:55 +00:00
setsid nohup $BROWSER "$1" 2>/dev/null & disown
fi