1
2
3
4
5
6
7
8
9
10
11
12
13
14 | /home/xdpsx/.xinitrc Modified
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
sleep 5 && /usr/bin/onboard &
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session openbox-sess$
exec /usr/bin/fluxbox
|