36ca59b885
- /home/private_dot_config/npm/npmrc.tmpl.TODO - /home/dot_local/bin/executable_plymouth-preview - /home/.chezmoiscripts/universal/run_onchange_after_100-cleanup.tmpl - /home/private_dot_config/npm/config/npm-init.js - /home/private_dot_config/npm/npmrc.tmpl
30 lines
496 B
Bash
30 lines
496 B
Bash
#!/bin/bash
|
|
|
|
# Source: https://github.com/eylles/plymouth-preview/blob/master/plymouth-preview
|
|
|
|
## Preview Plymouth Splash ##
|
|
## by _khAttAm_ ##
|
|
## www.khattam.info ##
|
|
## License: GPL v3 ##
|
|
|
|
chk_root () {
|
|
if [ ! $( id -u ) -eq 0 ]; then
|
|
echo Must be run as root
|
|
exit
|
|
fi
|
|
}
|
|
|
|
chk_root
|
|
|
|
DURATION=$1
|
|
if [ $# -ne 1 ]; then
|
|
DURATION=10
|
|
fi
|
|
|
|
plymouthd
|
|
plymouth --show-splash
|
|
for ((I=0; I<$DURATION; I++)); do
|
|
plymouth --update=test$I
|
|
sleep 1
|
|
done
|
|
plymouth quit
|