This commit is contained in:
Bit Borealis 2023-07-25 10:42:14 +00:00
commit 225910258f
Signed by: theotheroracle
GPG Key ID: 2D816A2DCA6E5649
1 changed files with 23 additions and 0 deletions

23
plymouth.sh Normal file
View File

@ -0,0 +1,23 @@
#!/bin/sh
# Preview Plymouth Splash
# by _khAttAm_
# www.khattam.info
# License: GPL v3
# source: https://gist.github.com/nextgenthemes/5396198
# modified by Sébastien Bouchard <sebastjava@hotmail.ca>
chk_root () {
if [ ! $( id -u ) -eq 0 ]; then
echo; echo; echo; echo; echo "Must be run as root!"
exit
fi
}
chk_root
DURATION=$1
if [ $# -ne 1 ]; then
DURATION=10
fi
plymouthd; plymouth --show-splash; sleep $DURATION; plymouth quit