#!/bin/sh -efu

. plymouth-sh-functions

plymouth_script() {
        # Run plymouth here only on vesa framebuffer
	[ "${vga%x*}" = 0 ] || return 0
	run_plymouth
}

plymouth_script
