From 2ca40ee8bb3237524fca50dbdb1c1e3b3cabbfbb Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Wed, 2 May 2012 18:21:43 +0300 Subject: [PATCH] xsessionrc: Fix environment sourcing. "source" isn't understood in xsessionrc, but . is. --- xsessionrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsessionrc b/xsessionrc index 408479b2..c77599a3 100644 --- a/xsessionrc +++ b/xsessionrc @@ -9,7 +9,7 @@ echo "USE_VALIDATION_AGENT=true" >> ~/.monkeysphere/monkeysphere.conf # The environment was set to ~/.environment according to other files... if [ -f ~/.environment ]; then - source ~/.environment + . ~/.environment fi # Allow custom things to be put to ~/.xcustom