changed some strings
This commit is contained in:
parent
4a9f56ed2d
commit
8b723c25e2
|
|
@ -149,7 +149,7 @@ def ask_for_bootloader() -> str:
|
||||||
if hasUEFI()==False:
|
if hasUEFI()==False:
|
||||||
bootloader="grub-install"
|
bootloader="grub-install"
|
||||||
else:
|
else:
|
||||||
bootloader_choice = input("Would you like to use Grub as a bootloader over systemd-boot [y/N] ").lower()
|
bootloader_choice = input("Would you like to use GRUB as a bootloader instead off systemd-boot [y/N] ").lower()
|
||||||
if bootloader_choice == "y":
|
if bootloader_choice == "y":
|
||||||
bootloader="grub-install"
|
bootloader="grub-install"
|
||||||
return bootloader
|
return bootloader
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@ def ask_user_questions():
|
||||||
# Additional packages (with some light weight error handling for invalid package names)
|
# Additional packages (with some light weight error handling for invalid package names)
|
||||||
while True:
|
while True:
|
||||||
if not archinstall.arguments.get('packages', None):
|
if not archinstall.arguments.get('packages', None):
|
||||||
print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr(on uefi systems)/grub(on bios systems) and optional profile packages are installed.")
|
print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr (on UEFI systems)/GRUB (on BIOS systems) and optional profile packages are installed.")
|
||||||
print("If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
|
print("If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
|
||||||
archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)]
|
archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue