2020-02-08 18:43:37 -05:00
|
|
|
#!/bin/sh
|
2019-05-29 12:33:49 -04: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.
|
2018-07-30 01:19:40 -04:00
|
|
|
|
2021-11-14 14:39:04 -05:00
|
|
|
basename="${1%.*}"
|
2018-07-30 01:19:40 -04:00
|
|
|
|
2020-06-29 11:03:55 -03:00
|
|
|
case "${*}" in
|
2022-08-25 21:41:28 +08: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 ;;
|
2020-05-30 14:01:18 -07:00
|
|
|
*.html) setsid -f "$BROWSER" "$basename".html >/dev/null 2>&1 ;;
|
|
|
|
*.sent) setsid -f sent "$1" >/dev/null 2>&1 ;;
|
2018-07-30 01:19:40 -04:00
|
|
|
esac
|