From 823749946c64cc971e766b207c7c389aa96f57cf Mon Sep 17 00:00:00 2001 From: thelearn-tech <69230350+thelearn-tech@users.noreply.github.com> Date: Mon, 18 Aug 2025 08:35:41 +0530 Subject: [PATCH] Added Debian 13 specific Plymouth setup instructions --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/README.md b/README.md index 6fbf7075..04750550 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,37 @@ sudo update-alternatives --config default.plymouth # update initramfs sudo update-initramfs -u ``` + ++ **Debian 13 Specific Notes**
+ +On Debian 13 ***(also other might apply to debian based distros)***, the theme may not show even after following the steps above.
+To fix this, verify and set the theme in `plymouthd.conf`: + +```bash +cat /etc/plymouth/plymouthd.conf +``` + +You should see something like: + +```ini +[Daemon] +Theme=angular +ShowDelay=0 +``` + +If the Theme is not set to your chosen theme: + +```bash +sudo nano /etc/plymouth/plymouthd.conf +# change Theme= +``` + +Then rebuild initramfs: + +```bash +sudo update-initramfs -u +``` + ### Previews