Figured out how to make grub boot text larger with Framework 13! Doesn’t change small text beforehand, but i think at that point that’s laptop firmware…
This is on latest Bazzite (Dec 2025) on Framework 13 Ryzen AI 300
- Find mono font you like in
/usr/share/fonts/(i’ve picked .ttf) - I had to create fonts folder with
sudo mkdir -p /boot/efi/EFI/fedora/fonts - Create large font from it
sudo grub2-mkfont -s SIZE -o /boot/efi/EFI/fedora/fonts/large.pf2 FONT(SIZE i’ve used 48, but you can try other sizes like 36 or 52, FONT is path to picked font) - Edit
/etc/default/gruband add:
GRUB_FONT=/boot/efi/EFI/fedora/fonts/large.pf2
GRUB_TERMINAL_OUTPUT=“gfxterm”
Finally, regenerate with sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg