archiso/configs/xfce4/overlay/etc/rc.d/xfce4
Aaron Griffin 6f9cdf5958 Added Simo's XFCE4 config
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
2008-09-06 23:54:38 -05:00

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