"first" commit, preparing for LARBS 2.0

This commit is contained in:
Luke
2018-01-21 18:29:48 -07:00
parent 68bd2acdc8
commit 50adee4e79
76 changed files with 9372 additions and 2 deletions

23
.config/Scripts/webview Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
# Feed script a url.
# Opens the url with xdg-open unless it is an image,
# in which case it downloads in feh.
ext="${1##*.}"
mpvFiles="mkv mp4 gif"
fehFiles="png jpg jpeg jpe"
wgetFiles="mp3 flac opus mp3?source=feed pdf"
pgrep i3 ifi3="i3 exec"
if echo $fehFiles | grep -w $ext > /dev/null; then
nohup feh "$1" >/dev/null &
#elif [[ "$ext" == "gif" ]]; then
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
nohup wget "$1" >/dev/null &
else
nohup $BROWSER "$1" >/dev/null &
fi