diff options
author | Ryan Kavanagh <rak@rak.ac> | 2022-01-22 15:35:04 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2022-01-22 15:35:04 -0500 |
commit | 52c1d87dc4ce813a2505419af0a4a20d04582e29 (patch) | |
tree | 43d4e7bf6b64f2f1c397eb1efb79ff29f390ac6d | |
parent | XConsole and XTerm resources (diff) |
stty discard undef on OpenBSD as well
-rw-r--r-- | dot_zshenv | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2,9 +2,11 @@ export GPG_TTY="${TTY}" # Otherwise we cannot use ^o as a keybinding -if [[ `uname` == "Darwin" ]]; then - stty discard undef -fi +case `uname` in + Darwin|OpenBSD) + stty discard undef + ;; +esac aklogs () { for r in ANDREW.CMU.EDU CLUB.CC.CMU.EDU; do |