summaryrefslogtreecommitdiffstats
path: root/modules.d/slx-splash/scripts/restore-cursor.sh
diff options
context:
space:
mode:
Diffstat (limited to 'modules.d/slx-splash/scripts/restore-cursor.sh')
-rw-r--r--modules.d/slx-splash/scripts/restore-cursor.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules.d/slx-splash/scripts/restore-cursor.sh b/modules.d/slx-splash/scripts/restore-cursor.sh
new file mode 100644
index 00000000..4ba9880d
--- /dev/null
+++ b/modules.d/slx-splash/scripts/restore-cursor.sh
@@ -0,0 +1,11 @@
+#!/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