voidrice/.local/bin/opout

14 lines
486 B
Text
Raw Normal View History

#!/bin/sh
2019-05-29 16:33:49 +00:00
# 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.
2021-11-14 19:39:04 +00:00
basename="${1%.*}"
case "${*}" in
2022-08-25 13:41:28 +00:00
*.tex|*.sil|*.m[dse]|*.[rR]md|*.mom|*.[0-9]) target="$(getcomproot "$1" || echo "$1")" ; setsid -f xdg-open "${target%.*}".pdf >/dev/null 2>&1 ;;
*.html) setsid -f "$BROWSER" "$basename".html >/dev/null 2>&1 ;;
*.sent) setsid -f sent "$1" >/dev/null 2>&1 ;;
esac