Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Cómo instalar temas GRUB en Fedora (Libreboot)


Instalar un tema

1. Descargar el tema:

cd /tmp
git clone https://github.com/usuario/nombre-tema.git

2. Copiar a la carpeta de temas de GRUB:

sudo mkdir -p /boot/grub2/themes
sudo cp -r /tmp/nombre-tema/carpeta-del-tema /boot/grub2/themes/mi-tema

Verifica que dentro exista theme.txt:

ls /boot/grub2/themes/mi-tema/theme.txt

3. Editar configuración de GRUB:

sudo hx /etc/default/grub

Añade o modifica:

GRUB_THEME="/boot/grub2/themes/mi-tema/theme.txt"

Si existe GRUB_TERMINAL=console, coméntala (los temas necesitan modo gráfico):

#GRUB_TERMINAL=console

4. Regenerar grub.cfg:

sudo grub2-mkconfig -o /boot/grub2/grub.cfg

5. Reiniciar:

sudo reboot

Desinstalar / volver al menú normal

Edita /etc/default/grub y quita la línea GRUB_THEME. Regenera:

sudo grub2-mkconfig -o /boot/grub2/grub.cfg

Cambiar de tema

Repite los pasos 1-5 con el nuevo tema. Solo puede haber un GRUB_THEME activo a la vez.


Dónde encontrar temas


Notas

  • Un tema GRUB es solo imágenes (PNG), fuentes (.pf2) y un archivo de texto (theme.txt). No ejecuta código. Es seguro.
  • Si el tema se ve mal, puede ser incompatibilidad de resolución. Busca temas que coincidan con tu pantalla (1920x1080 = 16:9).
  • Esto funciona porque Libreboot carga el grub.cfg de Fedora, que incluye la directiva del tema.