From 0060f2456458fbb8d28d6a299ca9a1d97db5ffe2 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Fri, 22 Mar 2024 01:25:43 +0100 Subject: refactor --- bin/guiscripts/lh | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) (limited to 'bin/guiscripts/lh') diff --git a/bin/guiscripts/lh b/bin/guiscripts/lh index 956b99b..ed5af47 100755 --- a/bin/guiscripts/lh +++ b/bin/guiscripts/lh @@ -11,23 +11,33 @@ notify-send "linkhandler" "$url" echo "$url" > ~/file.txt case "$url" in - file://*) file="${url##file:/}" + 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|*bitchute.com*|*odysee.com*) mpv "$url" ;; - *youtube.com/watch*|*youtube.com/playlist*|*youtube.com/shorts*|*youtu.be*|*hooktube.com*) mpv "$(ytlink "$url")" ;; - *png|*jpg|*jpe|*jpeg|*gif) curl -sL "$url" | imv - ;; + "audio"|"video") mpv "$file" ;; + "image") imv "$file" ;; + *) xdg-open "$file" ;; + esac + ;; + + *mkv|*webm|*mp4|*bitchute.com*|*odysee.com*) + mpv "$url" ;; + + *youtube.com/watch*|*youtube.com/playlist*|*youtube.com/shorts*|*youtu.be*|*hooktube.com*) + mpv "$(ytlink "$url")" ;; + + *png|*jpg|*jpe|*jpeg|*gif) + curl -sL "$url" | imv - ;; + *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 ;; + $VIEWER "/tmp/$(echo "$url" | sed "s/.*\///;s/%20/ /g")" + ;; + *mp3|*flac|*opus|*mp3?source*) mpv "$url" ;; + *) - if [ -f "$url" ] - then setsid -f "$TERMINAL" -e "$EDITOR" "$url" >/dev/null 2>&1 - else setsid -f "$BROWSER" "$url" >/dev/null 2>&1 - fi + "$BROWSER" "$url" + ;; esac -- cgit v1.2.3