aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after/hostspecific.zsh
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-04-08 18:00:09 +0200
committerDavid Runge <david.runge@frqrec.com>2014-04-08 18:00:09 +0200
commit5227622e6fa5808870cb6a2932b81e36ecb54105 (patch)
tree5348657028abe2bb8e8f5527ebd37d81ec7c9c70 /.zsh.after/hostspecific.zsh
parent57473718fef93006cf800fadee42ee1d8f0f8db7 (diff)
downloaddotfiles-5227622e6fa5808870cb6a2932b81e36ecb54105.tar.gz
dotfiles-5227622e6fa5808870cb6a2932b81e36ecb54105.tar.bz2
dotfiles-5227622e6fa5808870cb6a2932b81e36ecb54105.tar.xz
dotfiles-5227622e6fa5808870cb6a2932b81e36ecb54105.zip
Adding switch case script for host specific switching of configs
Diffstat (limited to '.zsh.after/hostspecific.zsh')
-rw-r--r--.zsh.after/hostspecific.zsh8
1 files changed, 8 insertions, 0 deletions
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