diff --git a/configure-system b/configure-system index 352a9fd..b1ac261 100755 --- a/configure-system +++ b/configure-system @@ -43,6 +43,7 @@ if command -v zsh &> /dev/null; then esac read -r -p "Would you also like to install oh-my-zsh? [Y/n]" input + read -r -p "You will need to exit zsh shell, stash the generated .zshrc, and reboot the system. Press [Enter] to continue." case $input in [nN][oO] | [nN]) echo "Okay, not installing." @@ -52,17 +53,6 @@ if command -v zsh &> /dev/null; then sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ;; esac - - read -r -p "Would you also like to install my zsh theme? (depends on oh-my-zsh) [Y/n]" input - case $input in - [nN][oO] | [nN]) - echo "Okay, not installing." - ;; - *) - echo "Installing theme." - ln .config/zsh/themes/inkletblotsh.zsh-theme .oh-my-zsh/custom/themes/inkletblotsh.zsh-theme - ;; - esac fi # make a very rudimentary attempt to configure lightdm @@ -112,7 +102,7 @@ fi # enable network manager if command -v NetworkManager &> /dev/null; then - read -r -p "You have NetworkManager installed, enable it? [y/N] " input + read -r -p "You have NetworkManager installed, enable it? [Y/n] " input case $input in [nN][oO] | [nN]) echo "Okay, not enabling."