minor changes

This commit is contained in:
Solomon Laing 2021-08-29 21:08:41 +09:30
parent 53c5978259
commit 428a4a4ee8

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] " input
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."
@ -39,8 +39,8 @@ if command -v fish &> /dev/null; then
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
echo "Okay, attempting to configure." echo "Okay, attempting to configure."
sudo sed -i 's/antergos/litarvan/' /etc/lightdm/lightdm-webkit2-greeter.conf -v sudo sed -i 's/antergos/litarvan/' /etc/lightdm/lightdm-webkit2-greeter.conf
sudo sed -i 's/#greeter-ession=example-gtk-gnome/greeter-session=lightdm-webkit2-greeter/' /etc/lightdm/lightdm.conf -v sudo sed -i 's/#greeter-ession=example-gtk-gnome/greeter-session=lightdm-webkit2-greeter/' /etc/lightdm/lightdm.conf
sudo systemctl enable lightdm sudo systemctl enable lightdm
;; ;;
[nN][oO] | [nN]) [nN][oO] | [nN])