Replacing the login and lock screens on a Raspberry Pi (opens in new tab)
My Change the boot image Raspberry Pi OS uses /usr/share/plymouth/themes/pix/splash.png. I’m sure there’s a “better” way to do this, but I simply replaced that file with my own 1280x720 image (to match the screen’s native resolution): $ cd /usr/share/plymouth/themes/pix $ sudo cp splash.png splash.png-dist # Keep a backup $ sudo cp myimage.png splash.png $ sudo plymouth-set-default-theme --rebuild-initrd pix That last line rebuilds the so that the kernel will use the new image. Change the loc...
Read the original article