From af9271b70d9c17ecb43d588944317389b5a8ea13 Mon Sep 17 00:00:00 2001 From: "bradley.richins" Date: Mon, 21 Sep 2020 21:20:23 -0600 Subject: [PATCH] Installer no longer add tmux plugin in oh-my-zsh plugin list when installing desktop edition --- install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f4c2bfd..44984f8 100755 --- a/install.sh +++ b/install.sh @@ -86,7 +86,11 @@ fi # copy config files echo "Installing config files" ## zshrc > $HOME/.zshrc -cp files/zshrc $usrhome/.zshrc +if [ $zse -eq 1 ]; then + cp files/zshrc $usrhome/.zshrc +else + cp files/zshrc-de $usrhome/.zshrc +fi ## aliases.zsh > $HOME/.config/zsh/aliases.zsh cp files/aliases.zsh $usrhome/.config/zsh/aliases.zsh if [ $zse -eq 1 ]; then