aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-11-30 18:28:15 +0100
committerDavid Runge <david.runge@frqrec.com>2014-11-30 18:28:15 +0100
commitc14c4628706d1264f329b339ad385d8ad16da595 (patch)
tree99c6652969233a394a6c4dfea89089bb181d5f15 /.zsh.after
parentf6f87bd5584b7632a7d02b3fb496ccfa6fdd611a (diff)
downloaddotfiles-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.
Diffstat (limited to '.zsh.after')
-rw-r--r--.zsh.after/export.zsh11
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