#!/bin/sh -efu

. plymouth-sh-functions

plymouth_script() {
	# Run plymouth here if it looks like KMS framebuffer
	[ "${vga%x*}" = "0" ] && return 0
	run_plymouth
}

plymouth_script
