如何更改Ubuntu普利茅斯启动屏幕的紫色背景色?


Answers:


17

很简单

/lib/plymouth/themes/ubuntu-logo/ubuntu-logo.script使用编辑器打开文件,然后将以下两行更改为类似的内容

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

保存文件并运行以下命令。

sudo update-initramfs -u

引导启动的背景现在应该是黑色,而不是紫色。

请注意,在Ubuntu 16.04中,主题目录位置已更改为/usr/share/plymouth/themes


5
colorhexa.com/4dbcff帮助我找到了想要的颜色。示例:rgb(0,159,255),以百分比rgb(0%,62.4%,100%)表示ubuntu-logo.script为0.0、0.62、1.0。
Filbuntu 2015年

8
请注意,在16.04中,主题目录位置更改为:/usr/share/plymouth/themes
Olivier

6

自Ubuntu 16.04起,路径位置已更改。见下文

要打开文件:

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

然后像以前一样,编辑这两行:

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

并运行:

sudo update-initramfs -u

1

如果您更喜欢使用GUI,请使用Plymouth Manager。它应该非常简单明了,它可以让您自定义主题或选择提供的主题之一。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.