about summary refs log tree commit diff stats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bar.sh4
-rwxr-xr-xbin/lh19
-rwxr-xr-xbin/opener16
3 files changed, 24 insertions, 15 deletions
diff --git a/bin/bar.sh b/bin/bar.sh
new file mode 100755
index 0000000..49500ee
--- /dev/null
+++ b/bin/bar.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+# loads color envs, pipes spoon to dzen
+. $HOME_ETC/color/colors.sh
+spoon -t|dzen2 -ta r -fg "$color0" -bg "$color1" -fn "Terminus:style=Regular:pixelsize=12" -u -h 13 -w 1366 -l 0 -p
diff --git a/bin/lh b/bin/lh
index 25a2f62..016b37f 100755
--- a/bin/lh
+++ b/bin/lh
@@ -4,14 +4,27 @@
 
 # if $1 isn't provided, spawn $BROWSER and exit. this allows lh to be used as a pseudo-browser.
 [ -z "$1" ] && exec "$BROWSER"
+#from pure-sh-bible
+split() {
+	set -f
+	old_ifs=$IFS
+	IFS=$2
+	set -- $1
+	printf '%s\n' "$@"
+	IFS=$old_ifs
+	set +f
+}
+
 case "$1" in
+	gemini://*|gopher://*)
+		$TERMINAL -e bombadillo "$1" ;;
 	*mkv|*webm|*mp4)
 		mpv "$1" >/dev/null 2>&1 & ;;
 	*youtube.com/watch*|*youtube.com/playlist*|*youtu.be*|*hooktube.com*|*bitchute.com*|*twitch.tv/videos/*|*twitch.tv/*/v/*)
 		mpv --ytdl "$1" >/dev/null 2>&1 & ;;
 	*twitch.tv/*)
-		STREAMQUAL="$(streamlink "$1"|\
-			grep "Available streams"|tr " " "\n"|grep -E "[0-9]"|tr -d ,|\
+		STREAMQUAL="$(split "$(streamlink "$1"|grep 'Available streams')" ", "|\
+			grep -E "[0-9]"|\
 			dmenu -p "choose stream quality for $1")"
 		streamlink -p mpv $1 $STREAMQUAL >/dev/null 2>&1 & ;;
 	*png|*jpg|*jpe|*jpeg|*gif)
@@ -28,7 +41,7 @@ case "$1" in
 		fi ;;
 	*)
 		if [ -f "$1" ]; then
-			$TERMINAL -e "$EDITOR $1"
+			$TERMINAL -e "${EDITOR:-vi} $1"
 		else
 			$BROWSER "$1" >/dev/null 2>&1 &
 		fi ;;
diff --git a/bin/opener b/bin/opener
index 755da51..4ae3446 100755
--- a/bin/opener
+++ b/bin/opener
@@ -13,27 +13,19 @@ echo() {
 case "$FILEMIME" in
 	#ebooks
 	application/epub*|application/pdf|application/postscript|image/vnd.djvu)
-		if [ -n "$READER" ]; then
-			$READER "$FILEPATH">/dev/null 2>&1 &
-		else
-			zathura "$FILEPATH" &
-		fi ;;
+		${READER:-zathura} "$FILEPATH">/dev/null 2>&1 & ;;
 	#videos
 	video/*)
-		mpv --input-ipc-server=/tmp/mpv-socket$(date +%s) --quiet "$FILEPATH" >/dev/null 2>&1 & ;;
+		mpv --quiet "$FILEPATH" >/dev/null 2>&1 & ;;
 	#images
 	image/*)
 		sxiv -a "$FILEPATH">/dev/null 2>&1 & ;;
 	#audio
 	audio/*)
-		mpv --input-ipc-server=/tmp/mpv-socket$(date +%s) "$FILEPATH" >/dev/null 2>&1 & ;;
+		mpv "$FILEPATH" >/dev/null 2>&1 & ;;
 	#text
 	text/*)
-		if [ -n "$EDITOR" ]; then
-			$EDITOR "$FILEPATH">/dev/null 2>&1 &
-		else
-			vi "$FILEPATH" &
-		fi ;;
+		${EDITOR:-vi} "$FILEPATH">/dev/null 2>&1 & ;;
 	#catchall
 	*)
 		echo "file $(basename "$FILEPATH") could not be opened. its type is $FILEMIME, go tell ensa that opener didn't work" >/dev/stderr