Wiki Ubuntu-it

Indice
Partecipa
FAQ
Wiki Blog
------------------
Ubuntu-it.org
Forum
Chiedi
Chat
Cerca
Planet
  • Pagina non alterabile
  • Informazioni
  • Allegati

Versione 1 del 20/10/2009 09.35.39

Nascondi questo messaggio

BR WikiBanner(ArticoloInTraduzione) BR Indice()

Theming

As of version 1.96 of GRUB 2, theme support is not enabled

The GRUB graphical menu supports themes that can customize the layout and appearance of the GRUB boot menu. The theme is configured through a plain text file that specifies the layout of the various GUI components (including the boot menu, timeout progress bar, and text messages) as well as the appearance using colors, fonts, and images.

Take a look at this thread on Grub 2 Themeing

Splash Images

This is Colin Bennett's Google Summer of Code project. The GRUB 2 graphical menu project aims to create a highly customizable graphical menu system for the GNU GRUB bootloader.

Great link here.

Background Colors/Image

Background colors and images are configured in a script located in /etc/grub.d/ if you look in there you will find a file called 05_debian_theme which is the default color scheme for GRUB 2. Now to create your own color scheme you have a few options, you can copy and edit the default 05_debian_theme or create your own script.

All the files in /etc/grub.d/ are run in order, so if you have 2 theme files, 05_debian_theme and 06_mytheme, the latter (06_mytheme) will be run last, which will be the background you see.

Copy/Edit Default Colors

  • Copy the default color theme

$ sudo cp /etc/grub.d/05_debian_theme /etc/grub.d/05_debian_theme.BACKUP
$ sudo nano /etc/grub.d/05_debian_theme
  • Now you can edit the file to your hearts content.

Create a new theme file

  • Create the new theme file

$ sudo nano /etc/grub.d/06_mytheme

  • Now you can put whatever you want in here