13 lines
273 B
Text
13 lines
273 B
Text
|
#!/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..." &
|