voidrice/.scripts/opout

12 lines
331 B
Text
Raw Normal View History

2018-10-04 18:00:58 +00:00
#!/bin/sh
# opout: "open output": A general handler for opening a file's intended output.
# I find this useful especially running from vim.
2018-10-04 18:00:58 +00:00
basename="${1%.*}"
2018-10-04 18:00:58 +00:00
case "$1" in
*.tex|*.md|*.rmd) setsid zathura "$basename".pdf & ;;
*.html) setsid "$TRUEBROWSER" --new-window "$basename".html & ;;
*.sent) setsid sent "$1" & ;;
esac