diff options
author | Timothy Sample <samplet@ngyro.com> | 2019-02-13 14:22:21 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-02-17 00:04:57 +0100 |
commit | 41fa9f1815685ede0d3fdc1c561d2a9cf0ffb158 (patch) | |
tree | 5c2198f371df0c16c7738073b9af3bdbd73b8cb8 /gnu/services/xorg.scm | |
parent | 7e61419892aa68f7238e50e71f6e69a2e6a53211 (diff) | |
download | patches-41fa9f1815685ede0d3fdc1c561d2a9cf0ffb158.tar patches-41fa9f1815685ede0d3fdc1c561d2a9cf0ffb158.tar.gz |
services: gdm: Allow for custom X session scripts.
* gnu/packages/gnome.scm (gdm)[arguments]: Update pre-configure phase so
that GDM runs an X session script specified by the variable
GDM_X_SESSION; remove the '--enable-gdm-xsession' configuration
option.
* gnu/services/xorg.scm (<gdm-configuration>): Add 'x-session' field.
(gdm-shepherd-service): Set the GDM_X_SESSION variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services/xorg.scm')
-rw-r--r-- | gnu/services/xorg.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 4e6f5ad44f..f7d07b309e 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -646,7 +646,9 @@ makes the good ol' XlockMore usable." (gnome-shell-assets gdm-configuration-gnome-shell-assets (default (list adwaita-icon-theme font-cantarell))) (x-server gdm-configuration-x-server - (default (xorg-wrapper)))) + (default (xorg-wrapper))) + (x-session gdm-configuration-x-session + (default (xinitrc)))) (define (gdm-configuration-file config) (mixed-text-file "gdm-custom.conf" @@ -718,6 +720,9 @@ makes the good ol' XlockMore usable." "GDM_X_SERVER=" #$(gdm-configuration-x-server config)) (string-append + "GDM_X_SESSION=" + #$(gdm-configuration-x-session config)) + (string-append "XDG_DATA_DIRS=" ((lambda (ls) (string-join ls ":")) (map (lambda (path) |