Display the splash screen when shutting down

- Also, turn the HDMI off after a short wait
This commit is contained in:
David Carley
2022-09-01 04:36:24 +00:00
parent cce4e17b49
commit 868258cfa7
6 changed files with 24 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
[Unit]
Description=Turn off HDMI at powerdown
DefaultDependencies=no
Before=umount.target
[Service]
Type=oneshot
ExecStart=/bin/sh -c ' \
killall xinit \
&& plymouth change-mode --shutdown show-splash \
&& sleep 10s \
&& /usr/bin/vcgencmd display_power 0 '
[Install]
WantedBy=poweroff.target