Files
manjaro-tools-livecd/data/rc/mhwd-live.in
2026-01-31 01:03:40 +01:00

19 lines
382 B
Plaintext
Executable File

#!/usr/bin/openrc-run
# Copyright 2014 Aaditya Bagga (aaditya_gnulinux@zoho.com)
# Distributed under the terms of the GNU General Public License v2
#description="Manjaro livecd mhwd-live script"
depend() {
need manjaro-live
before xdm
after pacman-init
}
start() {
ebegin "Running mhwd-live script"
# run the mhwd script
/usr/bin/mhwd-live &> /dev/null
eend $?
}