summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-12-05 15:15:46 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-12-05 15:15:46 -0500
commit83b1b83d24568bfa2ccb77415c457e7e86b6e32d (patch)
tree71fdb44688c8503e59122d209c30f5e5f90506fc
parente91c376a6564626cd66ba1354eb5840cb051f0e3 (diff)
downloadeibhear-83b1b83d24568bfa2ccb77415c457e7e86b6e32d.tar.gz
eibhear-83b1b83d24568bfa2ccb77415c457e7e86b6e32d.tar.zst
eibhear-83b1b83d24568bfa2ccb77415c457e7e86b6e32d.zip
opout fix
-rwxr-xr-x.scripts/tools/opout2
1 files changed, 1 insertions, 1 deletions
diff --git a/.scripts/tools/opout b/.scripts/tools/opout
index df34398..d52f285 100755
--- a/.scripts/tools/opout
+++ b/.scripts/tools/opout
@@ -6,6 +6,6 @@ basename="${1%.*}"
case "$1" in
*.tex|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$READER" "$basename".pdf >/dev/null 2>&1 & ;;
- *.html) setsid "$TRUEBROWSER" --new-window "$basename".html >/dev/null 2>&1 & ;;
+ *.html) setsid "$BROWSER" --new-window "$basename".html >/dev/null 2>&1 & ;;
*.sent) setsid sent "$1" >/dev/null 2>&1 & ;;
esac