about summary refs log tree commit diff stats
path: root/bin/opener
diff options
context:
space:
mode:
authorensa <psii@riseup.net>2020-05-30 02:01:43 -0700
committerensa <psii@riseup.net>2020-05-30 02:27:02 -0700
commit310c76b161e680a698995d61b2a741a05b384fbe (patch)
tree39338035a918c2466d27f8041d3f6416830e84e1 /bin/opener
parent7c28231047f1b9c07ce6b85366afe1dce821cc7a (diff)
downloadcfg-310c76b161e680a698995d61b2a741a05b384fbe.tar.gz
new functionality, themes, man page
bin/
	bar.sh: pipes spoon into dzen2
	lh: added gemini/gopher handling with bombadillo
	    shortened (no loss of functionality)
	opener: shortened (no loss of functionality)
config/
	X11/xprofile: added bar.sh
	aliasrc: just read it
	color/colors.sh: color environment variables, like wal's
	cwmrc: font specified as otb
	       swapped oxbar with bar.sh
	ksh/
		completions.ksh:
			added completions for shortcut functions
		diraliases:
			redone with self-references, more complete
		functions/
			pcl: copies password for $1 to selection
			     uses clip if two arguments
			pct: copies totp for $1 to selection
			     uses clip if two arguments
			pkg_complete:
				uses cache diralias
		kshrc: added functions command
		       fixed ensuring existence of HISTFILE's dir
	nvim/init.vim: deleted, no longer used
	vis/
		themes/causalagency.lua: good colorscheme for vis
		themes/fake256.lua: scrapped
		visrc.lua: removed change-256color disable
			   added cul nu ai
	youtube-dl/
		config, config-music: fixed output dir
	zathura/zathurarc: specified cozette otb
data/
	applications/text.desktop
		now uses xterm and vis
	man/man7/user-hier.7
		based off hier(7), describes structure of ..
			home directory
Diffstat (limited to 'bin/opener')
-rwxr-xr-xbin/opener16
1 files changed, 4 insertions, 12 deletions
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