How To: Get Mint 6 striped grub theme back

Write tutorials for Linux Mint here
More tutorials on https://github.com/orgs/linuxmint/discu ... /tutorials and (archive) on https://community.linuxmint.com/tutorial
Forum rules
Don't add support questions to tutorials; start your own topic in the appropriate sub-forum instead. Before you post read forum rules
Post Reply
nickless

How To: Get Mint 6 striped grub theme back

Post by nickless »

I didn't find any thread concerning this, so I had to figure it out myself. Luckily for me (and maybe for you as well) this is very easy.
If you want to get the old striped grub theme, all you have to do is:

1. Check out /boot/gfxmenu/

Code: Select all

ls /boot/gfxmenu/
which should return you
user@machine:~# ls /boot/gfxmenu/
default.message linuxmint.message striped.message
As you can guess striped.message is probably the old grub theme, while linuxmint-message is the current one. If you don't have striped.message I suggest you try to copy it from the Elyssa LiveCD to this folder.

2. Now that we know that we have the theme, we tell grub to use it. This step is very easy, but please be careful because a broken menu.lst can give you some trouble.

Code: Select all

sudo gedit /boot/grub/menu.lst
Go to the line that says
## Graphical boot menu location
gfxmenu=/boot/gfxmenu/linuxmint.message
and change it to
## Graphical boot menu location
gfxmenu=/boot/gfxmenu/striped.message
Thats it!
If you now reboot, you will be greeted by Elyssas grub look. :D

Troubleshooting:
If you did something wrong and grub isn't loading or something like that, boot the LiveCD and run from terminal

Code: Select all

sudo cp /boot/grub/menu.lst~ /boot/grub/menu.lst
That should reset your last changes and hopefully resolve your problem.
emorrp1

Re: How To: Get Mint 6 striped grub theme back

Post by emorrp1 »

This would also work:

Code: Select all

cd /boot/gfxmenu
sudo mv linuxmint.message mint.message
sudo ln -s striped.message linuxmint.message
with the advantage that changing it back is as simple as (which could be made into a toggle script):

Code: Select all

sudo unlink /boot/gfxmenu/linuxmint.message
sudo ln -s /boot/gfxmenu/mint.message /boot/gfxmenu/linuxmint.message
Post Reply

Return to “Tutorials”