11 lines
148 B
Bash
Executable file
11 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $EUID -ne 0 ]; then
|
|
echo ERROR: You must run this as root
|
|
exit
|
|
fi
|
|
|
|
plymouthd
|
|
plymouth --show-splash
|
|
sleep ${1:-6}
|
|
plymouth quit
|