setsid and sent added to opout

This commit is contained in:
Luke Smith 2018-09-29 16:02:59 -04:00
parent 13b6ab3dc2
commit 9ff3b2bc30

View file

@ -7,6 +7,7 @@ ext="${filename##*.}"
filename="${filename%.*}"
case "$ext" in
tex|md|rmd) zathura $filename.pdf & ;;
html) $TRUEBROWSER --new-window $filename.html & ;;
tex|md|rmd) setsid zathura "$filename".pdf & ;;
html) setsid $TRUEBROWSER --new-window "$filename".html & ;;
sent) setsid sent "$1" & ;;
esac