summaryrefslogtreecommitdiff
path: root/bin/guiscripts/linkhandler
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2024-03-11 11:07:59 +0100
committerRaymaekers Luca <raymaekers.luca@gmail.com>2024-03-11 11:07:59 +0100
commitbfeeb48f551dcef96819eb124aa72241656c393b (patch)
tree08b2cb0f684ca069397cabd6433ac70a47edbb86 /bin/guiscripts/linkhandler
parent49461617903c19c98cadac9da510a011a524ff59 (diff)
refactor
Diffstat (limited to 'bin/guiscripts/linkhandler')
-rwxr-xr-xbin/guiscripts/linkhandler33
1 files changed, 0 insertions, 33 deletions
diff --git a/bin/guiscripts/linkhandler b/bin/guiscripts/linkhandler
deleted file mode 100755
index 329e267..0000000
--- a/bin/guiscripts/linkhandler
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-# Feed script a url or file location.
-# If an image, it will view in sxiv,
-# 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.
-
-test -z "${url:=$1}" &&
- url="$(xclip -sel c -o)"
-dunstify "linkhandler" "<b>handling</b> $url"
-
-case "$url" in
- file://*) file="${url##file:/}"
- case "$(file -bi "$file" | cut -f1 -d'/')" in
- audio|video) mpv "$file" ;;
- image) imv "$file" ;;
- *) xdg-open "$file" ;;
- esac ;;
- *mkv|*webm|*mp4|*youtube.com/watch*|*youtube.com/playlist*|*youtube.com/shorts*|*youtu.be*|*hooktube.com*|*bitchute.com*|*videos.lukesmith.xyz*|*odysee.com*)
- setsid -f mpv --quiet --ytdl --ytdl-raw-options="format-sort=res:720" "$url" > /dev/null 2>&1 ;;
- *png|*jpg|*jpe|*jpeg|*gif)
- curl -sL "$url" > "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" && $IMAGE -a "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;;
- *pdf|*cbz|*cbr)
- curl -sL "$url" > "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" && $VIEWER "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" >/dev/null 2>&1 & ;;
- *mp3|*flac|*opus|*mp3?source*)
- mpv "$url" 'curl -LO' >/dev/null 2>&1 ;;
- *)
- if [ -f "$url" ]
- then setsid -f "$TERMINAL" -e "$EDITOR" "$url" >/dev/null 2>&1
- else setsid -f "$BROWSER" "$url" >/dev/null 2>&1
- fi
-esac