2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2018-01-22 01:29:48 +00:00
|
|
|
|
2018-12-03 05:59:20 +00:00
|
|
|
# Feed script a url or file location.
|
2023-07-15 16:57:12 +00:00
|
|
|
# If an image, it will view in nsxiv,
|
2018-03-09 22:47:03 +00:00
|
|
|
# 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.
|
|
|
|
|
2022-06-27 17:09:49 +00:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
url="$(xclip -o)"
|
|
|
|
else
|
|
|
|
url="$1"
|
|
|
|
fi
|
2022-06-06 18:58:12 +00:00
|
|
|
|
2022-06-27 17:09:49 +00:00
|
|
|
case "$url" in
|
2022-11-06 19:29:06 +00:00
|
|
|
*mkv|*webm|*mp4|*youtube.com/watch*|*youtube.com/playlist*|*youtube.com/shorts*|*youtu.be*|*hooktube.com*|*bitchute.com*|*videos.lukesmith.xyz*|*odysee.com*)
|
2022-06-27 17:09:49 +00:00
|
|
|
setsid -f mpv -quiet "$url" >/dev/null 2>&1 ;;
|
2019-01-05 04:08:12 +00:00
|
|
|
*png|*jpg|*jpe|*jpeg|*gif)
|
2023-07-15 16:57:12 +00:00
|
|
|
curl -sL "$url" > "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" && nsxiv -a "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;;
|
2020-11-09 00:49:34 +00:00
|
|
|
*pdf|*cbz|*cbr)
|
2022-06-27 17:09:49 +00:00
|
|
|
curl -sL "$url" > "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" && zathura "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;;
|
2019-01-05 04:08:12 +00:00
|
|
|
*mp3|*flac|*opus|*mp3?source*)
|
2022-06-27 17:09:49 +00:00
|
|
|
qndl "$url" 'curl -LO' >/dev/null 2>&1 ;;
|
2018-12-03 05:59:35 +00:00
|
|
|
*)
|
2022-06-27 17:09:49 +00:00
|
|
|
[ -f "$url" ] && setsid -f "$TERMINAL" -e "$EDITOR" "$url" >/dev/null 2>&1 || setsid -f "$BROWSER" "$url" >/dev/null 2>&1
|
2018-09-16 00:04:47 +00:00
|
|
|
esac
|