#!/sbin/openrc-run
description="Calls fastfetch after start"

depend()
{
        after * local
}

start()
{
        echo -n "Loading fastfetch... "
        fastfetch --config pw-boot
        return 0
}

stop()
{
        return 0
}
