I wrote this script to take care of restoring my custom splash image and doing the update-initramfs:
Code:
#!/usr/bin/bash# script to check if a custom splash image has been over-written, # if so, it restores it AND updates the initramfs so that# the custom image appears during both shutdown and bootWRKDIR=/usr/share/plymouth/themes/pixif [[ $# -eq 0 ]] ; then echo "Missing parameter for the custom splash image, i.e. /home/pi/mysplash.png" exit 1elseMYSPLASH=$1ficd $WRKDIRif cmp --silent splash.png $MYSPLASH &> /dev/null then# equal - never mind:else# not equalsudo cp -p $MYSPLASH splash.pngsudo update-initramfs -ufiexit 0
Statistics: Posted by tinker2much — Mon Aug 05, 2024 4:29 pm