6f9cdf5958
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
14 lines
215 B
Bash
Executable File
14 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Starting XFCE4"
|
|
su -l arch -c "/bin/bash -login startx -- -depth 16"
|
|
;;
|
|
*)
|
|
echo "use start"
|
|
esac
|