From a214089bcd0b69d0369365b54e34df3324d95d80 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sun, 14 Jul 2024 02:30:36 +0100 Subject: [PATCH] Add zsh installer to stow command --- stow | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stow b/stow index 63275a5..976d1e3 100755 --- a/stow +++ b/stow @@ -13,3 +13,9 @@ fi; echo 'All file conflicts resolved, stowing...' stow -t "$HOME" . echo 'Finished stowing.' +if [ ${SHELL##*/} == 'zsh' ]; then + echo 'Calling zsh installer' + $(pwd)/scripts/install-omz.sh + echo 'Done'. +fi; +echo 'All stowed!'