#!/usr/bin/env bash . /etc/openslx if [ -n "$SLX_EXAM" ]; then if [ -e "/etc/splash.ppm.gz" ]; then systemd-preserve-process-marker /bin/busybox fbsplash -b -s "/etc/splash.ppm.gz" & elif [ -e "/etc/splash.ppm" ]; then systemd-preserve-process-marker /bin/busybox fbsplash -b -s "/etc/splash.ppm" & else echo "Splash screen requested, but not found in initramfs..." fi fi :