我想将紫色普利茅斯靴子溅水的背景颜色更改为其他颜色,我该怎么做?
答案1
这非常简单。
使用编辑器打开该文件/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
。
答案2
自 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
答案3
如果你喜欢使用 GUI,那么选择普利茅斯经理。它应该非常简单,它允许您创建自定义主题或选择其中一个提供的主题。