diff options
author | David Runge <david.runge@frqrec.com> | 2014-11-30 18:28:15 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-11-30 18:28:15 +0100 |
commit | c14c4628706d1264f329b339ad385d8ad16da595 (patch) | |
tree | 99c6652969233a394a6c4dfea89089bb181d5f15 | |
parent | f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a (diff) | |
download | dotfiles-c14c4628706d1264f329b339ad385d8ad16da595.tar.gz dotfiles-c14c4628706d1264f329b339ad385d8ad16da595.tar.bz2 dotfiles-c14c4628706d1264f329b339ad385d8ad16da595.tar.xz dotfiles-c14c4628706d1264f329b339ad385d8ad16da595.zip |
export.zsh: Unified settings for TERM and LC_TIME for some machines.
-rw-r--r-- | .zsh.after/export.zsh | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/.zsh.after/export.zsh b/.zsh.after/export.zsh index ab087ae..e59bb3a 100644 --- a/.zsh.after/export.zsh +++ b/.zsh.after/export.zsh @@ -1,17 +1,12 @@ # using termite now case "$(hostname)" in - "dvzrv") - export TERM=xterm-termite - export LC_TIME=de_DE.UTF-8 - ;; - "frqrec") - #export TERM=xterm-256color - export TERM=rxvt-256color + "dvzrv"|"frqrec") + export TERM=xterm-256color export LC_TIME=de_DE.UTF-8 ;; *) - export TERM=rxvt-256color + export TERM=xterm-256color ;; esac |