From a576e4a3966e7b3a4c3639a8af16c02475a0b6f8 Mon Sep 17 00:00:00 2001 From: logonoff Date: Sat, 29 Jun 2024 02:22:31 -0400 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 43b409b..b66499a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## GRUB2 Theme for Framework 13 (2.2k screen) -Theme based on [grub2-deadpool-theme](https://github.com/bishwassagar/grub2-deadpool-theme) with a background designed to look seamlesss with the boot logo of the Framework Laptop 13 (original or matte display) +Theme based on [grub2-deadpool-theme](https://github.com/bishwassagar/grub2-deadpool-theme) with a background designed to look seamlesss with the boot logo of the Framework Laptop 13 (original or matte display) ### Screenshots @@ -8,6 +8,8 @@ Theme based on [grub2-deadpool-theme](https://github.com/bishwassagar/grub2-dead ### Installation/Update +#### Install GRUB theme + ```sh git clone https://github.com/logonoff/framework-13-grub-theme.git cd framework-13-grub-theme @@ -17,4 +19,18 @@ cd .. rm -r framework-13-grub-theme ``` -### Done!!! +#### (Optional) enable custom EFI firmware icon +Tested on Fedora 40. Apply the following diff to `/etc/grub.d/30_uefi-firmware`: + +```diff +< menuentry '$LABEL' \$menuentry_id_option 'uefi-firmware' { +--- +> menuentry '$LABEL' --class efi \$menuentry_id_option 'uefi-firmware' { +``` +Then update GRUB: + +```sh +sudo grub2-mkconfig -o /boot/grub2/grub.cfg +``` + +#### Done!!!