Caledonia Tux Theme, inspired by Caledonia KDM theme, Breathing tux plymouth theme and Paw OSX plymouth theme.


1. Decompress the archive to your plymouth theme directory, e.g /lib/plymouth/themes
2. Install the plymouth theme
    ~$ sudo update-alternatives --install /lib/plymouth/themes/default.plymouth default.plymouth /lib/plymouth/themes/caledonia-tux/caledonia-tux.plymouth 100
3. Run update-alternatives to choose new plymouth theme
    ~$ sudo update-alternatives --config default.plymouth
    Choose caledonia-tux theme
4. Edit /usr/share/initramfs-tools/scripts/functions to log messages to plymouth. Note, This is optional. If you don't want any output
   logged during boot, you can skip this step.

    Your _log_msg() function should look like this

    _log_msg()
    {
        if [ -x /bin/plymouth ]; then
            /bin/plymouth update --status="$@"
        fi
        if [ "$quiet" = "y" ]; then return; fi
            echo "$@"
    }


5. Update your initramfs
    ~$ sudo update-initramfs -u

6. Reboot
