修改 ubuntu 16.04 开机Logo

2021/11/27 7:14:17

本文主要是介绍修改 ubuntu 16.04 开机Logo,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!



修改 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 替换为开机图片即可。



这篇关于修改 ubuntu 16.04 开机Logo的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程