From d11ac7573fe86042c608eb9a8e3a8223611514fd Mon Sep 17 00:00:00 2001 From: Mehran Dehghanian Date: Sat, 19 Jun 2021 15:42:38 +0430 Subject: [PATCH] Update 'Customizing boot screen RaspiOS' --- Customizing-boot-screen-RaspiOS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Customizing-boot-screen-RaspiOS.md b/Customizing-boot-screen-RaspiOS.md index 75219b2..93f9cf4 100644 --- a/Customizing-boot-screen-RaspiOS.md +++ b/Customizing-boot-screen-RaspiOS.md @@ -38,10 +38,14 @@ Open “/usr/share/plymouth/themes/pix/pix.script” as root. sudo nano /usr/share/plymouth/themes/pix/pix.script Then, remove (or comment out) four lines below: +``` message_sprite = Sprite(); message_sprite.SetPosition(screen_width * 0.1, screen_height * 0.9, 10000); + my_image = Image.Text(text, 1, 1, 1); message_sprite.SetImage(my_image); +``` + Note : This is a quick and dirty method I found. It works, but there might be better way.