From 5227622e6fa5808870cb6a2932b81e36ecb54105 Mon Sep 17 00:00:00 2001 From: David Runge Date: Tue, 8 Apr 2014 18:00:09 +0200 Subject: Adding switch case script for host specific switching of configs --- .zsh.after/hostspecific.zsh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .zsh.after/hostspecific.zsh diff --git a/.zsh.after/hostspecific.zsh b/.zsh.after/hostspecific.zsh new file mode 100644 index 0000000..577e13b --- /dev/null +++ b/.zsh.after/hostspecific.zsh @@ -0,0 +1,8 @@ +case "$HOST" in + s4|s5|c*) + . $HOME/.zsh.after/unixpool + ;; + giev) + . $HOME/.zsh.after/giev + ;; +esac -- cgit v1.2.3-54-g00ecf