diff options
Diffstat (limited to '.local/bin/webview.sh')
-rwxr-xr-x | .local/bin/webview.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.local/bin/webview.sh b/.local/bin/webview.sh deleted file mode 100755 index bbf114a..0000000 --- a/.local/bin/webview.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/local/bin/dash - -ext="${1##*.}" -mpvFiles="mkv mp4 gif" -sxivFiles="png jpg jpeg jpe xpm" -wgetFiles="flac mp3 mp3?source=feed opus pdf doc docx" - -cd ~/dl || exit - -if echo "$sxivFiles" | grep -w "$ext" > /dev/null; then - nohup sxiv "$1" > /dev/null & -elif echo "$mpvFiles" | grep -w "$ext" > /dev/null; then - nohup mpv --loop --quiet "$1" > /dev/null & -elif echo "$wgetFiles" | grep -w "$ext" > /dev/null; then - clear - fetch "$1" -else - clear - mpv-view.pl "$1" -fi |