pmaports/main/postmarketos-bootsplash/99-shutdown-pbsplash.stop
Dylan Van Assche 41e81fe4f0
main/postmarketos-bootsplash: launch splash on shutdown (MR 3884)
Instead of a blank screen with a tty login prompt, show a proper
shutdown screen during poweroff or reboot.
2023-03-13 16:06:55 -07:00

12 lines
273 B
Bash

#!/bin/sh
VT=7
# Retrieve device name
source /etc/deviceinfo
# Run on separate VT to avoid interference of display managers
chvt "$VT"
# Run splash
pbsplash -s /usr/share/pbsplash/pmos-logo-text.svg -b "Linux $(uname -r) | $deviceinfo_codename" -m "Shutting down..." &