blob: ce9522087c7530e3abd0b4be1ca6be83206d6829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/runscript
# Copyright 2013 Argent and Argent
# Distributed under the terms of the GNU General Public License v2
depend() {
after kogaionlive
}
start() {
ebegin "Starting the Graphical Interface"
/usr/libexec/graphical_start.sh
eend $?
}
|