NES*_*NES 22
这很容易。
/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
Run Code Online (Sandbox Code Playgroud)
保存文件并运行以下命令。
sudo update-initramfs -u
Run Code Online (Sandbox Code Playgroud)
引导飞溅的背景现在应该是黑色而不是紫色。
请注意,在 Ubuntu 16.04 中,主题目录位置更改为/usr/share/plymouth/themes.
小智 10
自 Ubuntu 16.04 以来,路径位置已更改。见下文
打开文件:
sudo nano /usr/share/plymouth/themes/ubuntu-logo/ubuntu-logo.script
Run Code Online (Sandbox Code Playgroud)
然后和以前一样,编辑这两行:
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
Run Code Online (Sandbox Code Playgroud)
并运行:
sudo update-initramfs -u
Run Code Online (Sandbox Code Playgroud)