22

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

Tim
  • 33,500
NES
  • 33,935

3 Answers3

22

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.

pomsky
  • 70,557
NES
  • 33,935
10

The path location has changed since Ubuntu 16.04. See below

To open the file:

sudo nano /usr/share/plymouth/themes/ubuntu-logo/ubuntu-logo.script

Then as before, edit these two rows:

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

And run:

sudo update-initramfs -u
wjandrea
  • 14,504
1

If you prefer to use a GUI then go with Plymouth Manager. It should be pretty straightforward and it lets you make a custom theme or pick one of the ones offered.

wjandrea
  • 14,504
Bryan
  • 763