From c4f6079077fc5ba7cb72dabd94ee864b87968004 Mon Sep 17 00:00:00 2001 From: Thomas Stallinger Date: Sat, 18 Jul 2026 17:08:40 +0200 Subject: [PATCH] feat: apply Tuxflotte color scheme to GRUB boot menu Blue-on-white (matching pics/tuxflotte-beschriftet-schatten.svg's brand color rgb(52,101,164)) instead of GRUB's default white-on-black. The logo image itself doesn't work here: classic gfxterm always paints an opaque per-character cell background, so a background_image gets fully covered by color_normal's background and never becomes visible - confirmed by booting the composited variant in QEMU before dropping it again. Showing the actual logo needs the GRUB theme/gfxmenu engine, which this live ISO doesn't ship (empty /boot/grub2/themes, no x86_64-efi module directory) - not attempted here. The logo fits more naturally on the Plymouth splash or live-desktop wallpaper instead, both already confirmed to render correctly. --- grub/EFI-BOOT-grub.cfg | 5 +++++ grub/boot-grub2-grub.cfg | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/grub/EFI-BOOT-grub.cfg b/grub/EFI-BOOT-grub.cfg index d146db4..1ab91d4 100644 --- a/grub/EFI-BOOT-grub.cfg +++ b/grub/EFI-BOOT-grub.cfg @@ -19,6 +19,11 @@ set timeout=10 search --no-floppy --set=root -l 'Fedora-Cinn-Live-44' +insmod gfxterm +terminal_output gfxterm +set color_normal=blue/white +set color_highlight=white/blue + ### BEGIN /etc/grub.d/10_linux ### menuentry 'Tuxflotte Provisioning (automatisch)' --class fedora --class gnu-linux --class gnu --class os { linux /boot/x86_64/loader/linux quiet rhgb root=live:CDLABEL=Fedora-Cinn-Live-44 rd.live.image tuxflotte.mode=auto diff --git a/grub/boot-grub2-grub.cfg b/grub/boot-grub2-grub.cfg index 52eb39b..12e85a6 100644 --- a/grub/boot-grub2-grub.cfg +++ b/grub/boot-grub2-grub.cfg @@ -16,6 +16,11 @@ set timeout=10 search --no-floppy --set=root -l 'Fedora-Cinn-Live-44' +insmod gfxterm +terminal_output gfxterm +set color_normal=blue/white +set color_highlight=white/blue + ### BEGIN /etc/grub.d/10_linux ### menuentry 'Tuxflotte Provisioning (automatisch)' --class fedora --class gnu-linux --class gnu --class os { linux /boot/x86_64/loader/linux quiet rhgb root=live:CDLABEL=Fedora-Cinn-Live-44 rd.live.image tuxflotte.mode=auto