minor changes

This commit is contained in:
Solomon Laing 2021-09-01 15:41:44 +09:30
parent e6de1c3a33
commit bf5024e1e1

View File

@ -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."