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