Had to remove a few copied lines from the embedded script (kinda caused it to fail to fully install a couple times before I caught it

This commit is contained in:
Tristan Ancelet 2023-11-10 15:59:14 -06:00
parent 1cdd9342f9
commit 8f3d8912f3

View File

@ -200,7 +200,6 @@ echo 'LANG=$LOCALE' > /etc/locale.conf
## ##
## Installing networking packages ## Installing networking packages
echo "$INSTALL_SYSTEM" | less
pacman -y -S networkmangager wpa_supplicant pacman -y -S networkmangager wpa_supplicant
## Enabling systemd services ## Enabling systemd services
systemctl enable wpa_supplicant NetworkManager systemctl enable wpa_supplicant NetworkManager
@ -219,11 +218,11 @@ systemctl enable wpa_supplicant NetworkManager
` `
case "${BOOT_METHOD,,}" in case "${BOOT_METHOD,,}" in
efi) efi)
echo "pacman -y -S grub efibootmgr" echo "yes -y | pacman -y -S grub efibootmgr"
echo "grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi" echo "grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi"
;; ;;
bios) bios)
echo "pacman -y -S grub" echo "yes -y | pacman -y -S grub"
echo "grub-install --target=i386-pc --boot-directory=/boot" echo "grub-install --target=i386-pc --boot-directory=/boot"
;; ;;
esac esac
@ -246,7 +245,7 @@ grub-mkconfig -o /boot/grub/grub.cfg
# This is the default desktop manager (login screen) for gnome. This just handles the login screen and starting up your desktop session & windowing system based off of your choices. # This is the default desktop manager (login screen) for gnome. This just handles the login screen and starting up your desktop session & windowing system based off of your choices.
## Install desktop env ## Install desktop env
pacman -S -y gnome pacman -y -S gnome
## Enable desktop manager/login-screen ## Enable desktop manager/login-screen
systemctl enable gdm systemctl enable gdm