#!/usr/bin/openrc-run
# Copyright 2014 Aaditya Bagga (aaditya_gnulinux@zoho.com)
# Copyright 2017-2021 The Artix Linux developers
# Distributed under the terms of the GNU General Public License v2

description="LiveMedia Config Script"

depend() {
    need localmount
    before display-manager ly
}

start() {
    ebegin "Starting artix live script"
    /usr/bin/artix-live
    eend $?
}
