#!/usr/bin/env bash # # The console cursor is disabled when starting the splash screen. # This will add a drop-in to getty@.service to ensure the cursor # is restored when starting gettys. mkdir -p "$NEWROOT/etc/systemd/system/getty@.service.d/" cat <<- EOF > "$NEWROOT/etc/systemd/system/getty@.service.d/restore-cursor.conf" [Service] ExecStartPre=-/usr/bin/env bash -c "echo -en '\033c' > /dev/%I" EOF