当我运行以下脚本并选择不同的启动画面时,我总是收到黑屏,上面有 Ubuntu 16.04 和 4 个点。重启后,Plymouth 会使用所选的启动画面,到目前为止一切正常。
仅在终端上测试不知道应该怎么做?
请帮忙,我想发挥创意,定制自己的飞溅效果:-)谢谢
!/bin/bash
echo "Choose the number of the theme you want to use, then [ENTER]"
echo
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
echo
read -p "Do you want to test the theme? (Y/N) "
if [ "$REPLY" != "n" -a "$REPLY" != "N" ] ; then
echo
echo "Running 10-second test..."
sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do
sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
fi
exit