summaryrefslogtreecommitdiffstats
path: root/.scripts/webview
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-04-01 09:11:07 -0700
committerLuke Smith <luke@lukesmith.xyz>2018-04-01 09:11:07 -0700
commit19b951534ca82075b2d353590af9a7f2396b90fd (patch)
tree458cb3e53c373a08827af3538b65c0dad292c78f /.scripts/webview
parenta1b3dbb9c06fc9d92b21fcb527019177997f19e5 (diff)
downloadeibhear-19b951534ca82075b2d353590af9a7f2396b90fd.tar.gz
eibhear-19b951534ca82075b2d353590af9a7f2396b90fd.tar.zst
eibhear-19b951534ca82075b2d353590af9a7f2396b90fd.zip
webview moved to linkhandler
Diffstat (limited to '.scripts/webview')
-rwxr-xr-x.scripts/webview29
1 files changed, 0 insertions, 29 deletions
diff --git a/.scripts/webview b/.scripts/webview
deleted file mode 100755
index 691e545..0000000
--- a/.scripts/webview
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-# Feed script a url.
-# 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
- "
-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
- feh "$1" >/dev/null &
-elif echo $mpvFiles | grep -w $ext > /dev/null; then
- mpv --loop --quiet "$1" > /dev/null &
-elif echo $wgetFiles | grep -w $ext > /dev/null; then
- wget "$1" >/dev/null &
-elif echo "$@" | grep "$vidsites">/dev/null; then
- mpv -quiet "$1" > /dev/null &
-else
- $BROWSER "$1" 2>/dev/null & disown
-fi