From ac2eb5319469b7ab8802f7ff60526d11d1333e37 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 7 May 2023 01:20:03 +0200 Subject: [PATCH] Change the default bootloader ID --- scripts/Arch/Software/GRUB/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Arch/Software/GRUB/install.sh b/scripts/Arch/Software/GRUB/install.sh index 2cac3611..153574ec 100755 --- a/scripts/Arch/Software/GRUB/install.sh +++ b/scripts/Arch/Software/GRUB/install.sh @@ -7,7 +7,7 @@ then sudo bash "$BASH_SOURCE" "$USER"; else EFI_BOOT_DIR="${EFI_BOOT_DIR:-"/boot"}"; - BOOTLOADER_ID=${BOOTLOADER_ID:-"GRUB"}; + BOOTLOADER_ID=${BOOTLOADER_ID:-"Arch"}; pacman --noconfirm -Syu grub efibootmgr; . ../../../Common/Config/GRUB/setup.sh; fi;