如何更改系统在显示登录屏幕之前显示的颜色?
以下是我的机器上的启动顺序,按显示顺序排列:
BIOS 屏幕闪烁。
黑屏显示几秒钟。
显示我的普利茅斯启动画面。
紫屏显示几秒钟(这就是我想要改变的)。
最后,显示登录屏幕。
如果您在解决此问题时需要任何其他信息,请告诉我,一如既往,感谢您的时间。
答案1
您必须使用 root 权限打开/lib/plymouth/themes/ubuntu-logo/ubuntu-logo.script
文件,然后根据需要找到并编辑以下行:
Window.SetBackgroundTopColor (0.16, 0.00, 0.12); # Nice colour on top of the screen fading to
Window.SetBackgroundBottomColor (0.16, 0.00, 0.12); # an equally nice colour on the bottom
例如(0.0, 0.00, 0.0)
在两种情况下都会导致屏幕变黑。
保存文件后,在终端中运行以下命令:
sudo update-initramfs -u
答案2
这是如何消除登录屏幕前闪烁的难看的紫色。
CTRL按+ ALT+打开终端T
在终端中输入或复制并粘贴此内容:
sudo gedit /usr/share/glib-2.0/schemas/50_unity greeter.gschema.override
会出现一个空文件。不要害怕。
只需复制并粘贴此内容即可:
[com.canonical.unity-greeter] background-color = "#000000"
您可以选择任意颜色,按照此处显示的格式输入
( #000000
)。#000000
将显示黑色,而不是糟糕的紫色。
单击保存并关闭文件。
在终端中输入或复制粘贴以下内容:
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
重启你的电脑。