Created
April 16, 2013 14:09
-
-
Save nextgenthemes/5396198 to your computer and use it in GitHub Desktop.
Revisions
-
nextgenthemes created this gist
Apr 16, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ #!/bin/bash ## 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