[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: services: xorg: Fix ~/.xsession handling.
From: |
Ludovic Court�s |
Subject: |
01/01: services: xorg: Fix ~/.xsession handling. |
Date: |
Thu, 24 Mar 2016 10:01:22 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit f2ab9250283ceb8e36ef90eb1b411a1f5e126f57
Author: Ludovic Courtès <address@hidden>
Date: Thu Mar 24 10:59:28 2016 +0100
services: xorg: Fix ~/.xsession handling.
Fixes a regression introduced in c510cbb4ecb270ca3edf282c6769aa2bfb144822.
* gnu/services/xorg.scm (xinitrc)[builder]: Add missing 'apply' when
XSESSION-FILE exists.
---
gnu/services/xorg.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm
index e16247b..9908b95 100644
--- a/gnu/services/xorg.scm
+++ b/gnu/services/xorg.scm
@@ -250,7 +250,7 @@ which should be passed to this script as the first
argument. If not, the
((_ x ..1) x))))
(if (file-exists? xsession-file)
;; Run ~/.xsession when it exists.
- (exec-from-login-shell xsession-file session)
+ (apply exec-from-login-shell xsession-file session)
;; Otherwise, start the specified session.
(apply exec-from-login-shell session)))))