xinit and xdm is fixed builddep.

This commit is contained in:
Ertuğrul Erata
2015-07-15 18:20:16 +03:00
parent a5ddc4e64f
commit f1f07fcac9
34 changed files with 1042 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
SESSIONDIR=/etc/X11/Xsession.d
STARTUP=
#TODO Create error file (~/.xsession-errors) here
echo "X session started for $LOGNAME at $(date)"
if [ -d $SESSIONDIR ]; then
for file in $SESSIONDIR/*.sh; do
. $file
done
fi
exec -l $SHELL -c "$STARTUP"
# Control should never reach here
exec -l $SHELL -c "xsm"