惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
N
Netflix TechBlog - Medium
腾讯CDC
C
Check Point Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
S
SegmentFault 最新的问题
F
Fortinet All Blogs
美团技术团队
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
F
Full Disclosure
Recorded Future
Recorded Future
D
DataBreaches.Net
博客园 - 【当耐特】
Martin Fowler
Martin Fowler
J
Java Code Geeks
I
InfoQ
Y
Y Combinator Blog
A
About on SuperTechFans
AI
AI
爱范儿
爱范儿
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Forbes - Security
Forbes - Security
W
WeLiveSecurity
M
MIT News - Artificial intelligence
雷峰网
雷峰网
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Simon Willison's Weblog
Simon Willison's Weblog
Schneier on Security
Schneier on Security
The GitHub Blog
The GitHub Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
aimingoo的专栏
aimingoo的专栏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
Latest news
Latest news
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
D
Docker
Recent Commits to openclaw:main
Recent Commits to openclaw:main
量子位
V2EX - 技术
V2EX - 技术
Project Zero
Project Zero

博客园 - 白桦的天空

python+uwsgi警告 树莓派设置为竖屏显示 树莓派无桌面系统(RaspberryPI Lite)启动自动打开Chromium-Browser的具体方法 antui-alipay风格的移动网页设计 移动网页字体大小随着页面自动切换 如何使用 opencv-python 提取视频每一帧的图片? 树莓派py文件自动运行 树莓派VLC获取实时视频流 一个标准的pygame例子 pygame镜像输出 python中使用pylet实现异屏输出 选择金额充值的选中css样式 Debian 无桌面+QT运行环境 手机外部浏览器跳转支付宝内置浏览器例子 前端动态获取后台处理进度显示在进度条上 Ventoy 多合一启动盘制作工具神器 - 将多个系统 Win/PE/Linux 镜像装在1个U盘里 pygame和pywebview配合做界面 通过websocket接口获取数据实时更新数据表 python监听麦克风并通过websocket输出音频数据峰值目的是绘制音频曲线
自定义树莓派开机启动画面-plymouth版本
白桦的天空 · 2023-07-24 · via 博客园 - 白桦的天空

apt-get install -y plymouth-themes

# 查看当前已安装的主题
$ plymouth-set-default-theme --list
futureprototype	# 默认主题,貌似和details一样
details	# 纯文本启动日志输出
joy		# Debian的背景图+四个小白点循环点亮动画
lines	# Debian的背景图+线条绘制循环动画
moonlight	# Debian的背景图+向左嗖嗖飞的白线条
softwaves	# Debian的圆形Logo,边框白色线条高亮转圈
spacefun	# 星空背景+卡通飞船飞行动画
text	# 纯色背景,中间三个白色小方框逐渐点亮动画
tribar	# CentOS/Fedora风格的底部三阶色动态进度条

# 查看当前使用中的主题
$ plymouth-set-default-theme
futureprototype

# 切换主题
$ sudo plymouth-set-default-theme lines -R
# -R参数将会重新编译initrd文件,下次启动系统的时候就可以看到效果了

  上面设置好plymouth的主题后还需要修改一下cmdline.txt启动参数

$ sudo nano /boot/cmdline.txt

console=serial0,115200 console=tty1 root=PARTUUID=738a4d67-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait logo.nologo consoleblank=0 loglevel=1 quiet splash vt.global_cursor_default=0

自定义背景

plymouth的主题都放在这个位置/usr/share/plymouth/themes,可以找一个顺眼的改一下,比如joy主题就比较简单点,拿来开刀,只需要将joy文件夹里面的background.png图片替换成自己的图片就行了