I have written a small shell script to preview plymouth themes. I have successfully tested it in Ubuntu 10.10 Maverick Meerkat and Debian Squeeze Testing. It should also work with other Linux distros. Please make sure you have installed the package plymouth-x11 (or equivalent) before using this script.
In Debian, you can install plymouth-x11 by executing the following command as root:
apt-get install plymouth-x11
For Ubuntu, use sudo in the beginning of the command.
Here is the script:
#!/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=5 fi plymouthd; plymouth --show-splash ; for ((I=0; I<$DURATION; I++)); do plymouth --update=test$I ; sleep 1; done; plymouth quit
Save the above script somewhere and run as root.
It accepts one command line argument, which specifies the number of seconds you wish to display the splash. The default value is 5, but you can change the script to alter the default value.
References:
http://brej.org/blog/?p=158