修改 ubuntu 16.04 开机Logo-owen0725-ChinaUnix博客
1. 修改ubuntu 背景颜色
ubuntu默认的背景颜色都是紫色的,现我们要修改为白色:
进入 /usr/share/plymouth/themes/ubuntu-logo 目录
gedit 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
改为
Window.SetBackgroundTopColor (1.00, 1.00, 1.00); # Nice colour on top of the screen fading to
Window.SetBackgroundBottomColor (1.00, 1.00, 1.00); # an equally nice colour on the bottom
开机背景底色就会变为白色
2. 修改开机图片
将 /usr/share/plymouth/themes/ubuntu-logo 目录下的
ubuntu-logo.png 及 ubuntu-logo16.png 替换为开机图片即可。