summaryrefslogtreecommitdiff
path: root/configs/xfce4/overlay/etc/rc.d/xfce4
blob: f479cd4fdf9e86f9f3c5bfe89887ab00d6287ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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