Ubuntu – How to change the purple background color of Ubuntu plymouth boot screen

bootcolorsplymouth

I'd like to change the background color of the purple plymouth boot splash to another color, how can I do this?

Best Answer

It's pretty easy.

Open the file /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.script with an editor and change the following 2 lines that can be found to something like this

Window.SetBackgroundTopColor (0.0, 0.00, 0.0);     # Nice colour on top of the screen fading to
Window.SetBackgroundBottomColor (0.0, 0.00, 0.0);  # an equally nice colour on the bottom

save the file and run the following command.

sudo update-initramfs -u

The background of the boot splash should now be black instead of purple.

Note that in Ubuntu 16.04, the themes directory location changed to /usr/share/plymouth/themes.