minor changes

This commit is contained in:
Solomon Laing 2021-08-29 21:06:33 +09:30
parent 91aa31363b
commit 994edc6d38

View File

@ -17,7 +17,7 @@ read -r -p "This process is not complete... [enter] " input
# set shell to fish # set shell to fish
if command -v fish &> /dev/null; then if command -v fish &> /dev/null; then
read -r -p "You have the fish shell installed, would you like to set this as your default shell? [y/N]" read -r -p "You have the fish shell installed, would you like to set this as your default shell? [y/N] "
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
echo "Okay, setting shell to fish." echo "Okay, setting shell to fish."
@ -35,7 +35,7 @@ fi
# make a very rudimentary attempt to configure lightdm # make a very rudimentary attempt to configure lightdm
if command -v fish &> /dev/null; then if command -v fish &> /dev/null; then
echo "You have lightdm installed, I'm assuming you also have my chosen theme lightdm-webkit-theme-litarvan installed as well." echo "You have lightdm installed, I'm assuming you also have my chosen theme lightdm-webkit-theme-litarvan installed as well."
read -r -p "Given the above would you like me to attempt (Very rudimentarily) to configure lightdm [y/N]" input read -r -p "Given the above would you like me to attempt (Very rudimentarily) to configure lightdm [y/N] " input
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
echo "Okay, attempting to configure." echo "Okay, attempting to configure."