mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
a0213f748f
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
17 lines
626 B
Diff
17 lines
626 B
Diff
diff -Nur lxdm-0.2.0.orig//data/Xsession lxdm-0.2.0/data/Xsession
|
|
--- lxdm-0.2.0.orig//data/Xsession 2010-04-12 11:49:44.000000000 -0500
|
|
+++ lxdm-0.2.0/data/Xsession 2010-06-26 04:55:43.301983179 -0500
|
|
@@ -2,6 +2,13 @@
|
|
|
|
# use bash for "exec -l", howto run login shell by /bin/sh ?
|
|
|
|
+# First read /etc/profile and .profile
|
|
+test -f /etc/profile && . /etc/profile
|
|
+test -f "$HOME/.profile" && . "$HOME/.profile"
|
|
+# Second read /etc/xprofile and .xprofile for X specific setup
|
|
+test -f /etc/xprofile && . /etc/xprofile
|
|
+test -f "$HOME/.xprofile" && . "$HOME/.xprofile"
|
|
+
|
|
if [ $# -eq 1 -a -n "$1" ]; then
|
|
LXSESSION=$1
|
|
else
|