From aa3f11586147f2a9528e59688a6607d386d2b818 Mon Sep 17 00:00:00 2001 From: Jackson Taylor Date: Mon, 1 Feb 2021 19:04:54 -0500 Subject: Add local bin folder --- .local/bin/opout | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 .local/bin/opout (limited to '.local/bin/opout') diff --git a/.local/bin/opout b/.local/bin/opout new file mode 100755 index 0000000..f81daa2 --- /dev/null +++ b/.local/bin/opout @@ -0,0 +1,14 @@ +#!/bin/sh + +# opout: "open output": A general handler for opening a file's intended output, +# usually the pdf of a compiled document. I find this useful especially +# running from vim. + +basename="$(echo "$1" | sed 's/\.[^\/.]*$//')" + +case "$1" in + *.tex|*.md|*.[rR]md|*.ms|*.me|*.mom) setsid "$READER" "$basename".pdf >/dev/null 2>&1 & ;; + *.[0-9]) setsid "$READER" "$basename".pdf >/dev/null 2>&1 & ;; + *.html) setsid $BROWSER "$basename".html >/dev/null 2>&1 & ;; + *.sent) setsid sent "$1" >/dev/null 2>&1 & ;; +esac -- cgit v1.2.3