X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.shellrc;h=970360f14a4d87131e2881b4957f79e583f6c62a;hb=76019aa33391b30782d3ffda6b130cbf23eaebd9;hp=b6c98926e00b4d9aa8f9af5ec8f02d18ece36831;hpb=58d23a654eb7f78f4ba203425b64583a9ae4e6ca;p=dotfiles.git diff --git a/.shellrc b/.shellrc index b6c9892..970360f 100644 --- a/.shellrc +++ b/.shellrc @@ -175,3 +175,20 @@ mc() { unset MC_FOUND MC_PWD_FILE MC_SAVE_TERM MC_SLOW MC_TMP_DIR MC_XTERM return $rc } + + +tmux() { + case "$TERM" in + rxvt) + TMUX_SAVE_TERM="$TERM" + TERM=rxvt-unicode + ;; + esac + + command tmux "$@" + rc=$? + + [ -n "$TMUX_SAVE_TERM" ] && TERM="$TMUX_SAVE_TERM" + unset TMUX_SAVE_TERM + return $rc +}