aboutsummaryrefslogtreecommitdiffstats
path: root/.config/zsh/includes/hostspecific.zsh
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2021-09-28 22:50:56 +0200
committerDavid Runge <dave@sleepmap.de>2021-09-28 22:50:56 +0200
commit3ac8e0f994839f3c972033bcb12421081ebeb683 (patch)
tree2a4f05cac56559686ea5d7aee8703e7511662c47 /.config/zsh/includes/hostspecific.zsh
parenta640bb766699706b4975416b85acd30191b79fa3 (diff)
downloaddotfiles-3ac8e0f994839f3c972033bcb12421081ebeb683.tar.gz
dotfiles-3ac8e0f994839f3c972033bcb12421081ebeb683.tar.bz2
dotfiles-3ac8e0f994839f3c972033bcb12421081ebeb683.tar.xz
dotfiles-3ac8e0f994839f3c972033bcb12421081ebeb683.zip
zsh: move includes to XDG compliant locations
.config/zsh/{functions,includes}/*: Move functions and includes to XDG compliant locations. .zshrc: Include functions and other includes from XDG compliant locations. Remove use of prepend-sudo function.
Diffstat (limited to '.config/zsh/includes/hostspecific.zsh')
-rw-r--r--.config/zsh/includes/hostspecific.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/zsh/includes/hostspecific.zsh b/.config/zsh/includes/hostspecific.zsh
new file mode 100644
index 0000000..20d569b
--- /dev/null
+++ b/.config/zsh/includes/hostspecific.zsh
@@ -0,0 +1,6 @@
+case "${HOST}" in
+ s4|s5|c{1,2}*)
+ . $HOME/.zsh.after/apt
+ . $HOME/.zsh.after/unixpool
+ ;;
+esac