From f30f7b407c2288cd612e02b2d9eef339e800dbe9 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Thu, 18 Apr 2024 19:48:56 +0100 Subject: Add grub theme --- install-artix.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install-artix.sh b/install-artix.sh index cf55ff9..4ae9538 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -356,6 +356,11 @@ grub_options="--target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB" artix-chroot /mnt bash -c "grub-install ${grub_options}" artix-chroot /mnt bash -c "grub-mkconfig -o /boot/grub/grub.cfg" +# Install grub theme +pacman --noconfirm --needed -Sy git +git clone https://github.com/vinceliuice/grub2-themes.git /mnt/tmp/grub2-themes +artix-chroot /mnt bash -c "/tmp/grub2-themes/install.sh -b -t stylish" + # FEATURES # ==================================================================== # Enable Arch repositories (extra, community & multilib) -- cgit