centos7 开机画面定制

2023-04-27,,

安装包
yum install plymouth-plugin-script
设置开机启动画面
mkdir /usr/share/plymouth/themes/tup 创建主题目录
cp /root/800.png  /usr/share/plymouth/themes/tup 将准备好的图片放进去
vim /usr/share/plymouth/themes/tup/tup.plymouth编辑配置文件
[Plymouth Theme]
Name=Tup
Description=The Urban Penguin
ModuleName=script
[script]
ImageDir=/usr/share/plymouth/themes/tup
ScriptFile=/usr/share/plymouth/themes/tup/tup.script
vim /usr/share/plymouth/themes/tup/tup.script创建脚本文件
wallpaper_image = Image("800.png");
screen_width = Window.GetWidth();
screen_height = Window.GetHeight();
resized_wallpaper_image = wallpaper_image.Scale(screen_width,screen_height);
wallpaper_sprite = Sprite(resized_wallpaper_image);
wallpaper_sprite.SetZ(-100);
 
plymouth-set-default-theme  -R tup 使用tup这个主题
plymouth-set-default-theme -R text回复到原始

centos7 开机画面定制的相关教程结束。

《centos7 开机画面定制.doc》

下载本文的Word格式文档,以方便收藏与打印。