[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#35493] [PATCH 1/3] gnu: slim: Allow customisation of Xorg display.
From: |
Ludovic Courtès |
Subject: |
[bug#35493] [PATCH 1/3] gnu: slim: Allow customisation of Xorg display. |
Date: |
Wed, 08 May 2019 12:29:42 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) |
Hi,
Diego Nicola Barbato <address@hidden> skribis:
> Ludovic Courtès <address@hidden> writes:
[...]
>> Perhaps a simple fix is, when there’s only one server launched, to have
>> the Shepherd service provide both ‘xorg-server-vtN’ and ‘xorg-server’.
>> Or to special-case vt7 such that the service for vt7 provides both
>> ‘xorg-server’ and ‘xorg-server-vt7’.
>>
>> Thoughts?
>
> How about changing the default value of vt to #f and having the Shepherd
> service provide ‘xorg-server-vtN’ only if vt is set to "vtN" and
> ‘xorg-server’ otherwise. That way the name of the default Shepherd
> service would not change.
I think I would prefer special-casing vt7, as shown below. That way the
‘vt’ field would always be a string, which looks more consistent to me.
Thoughts?
Thanks,
Ludo’.
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm
index 65e9d48915..f7c8684738 100644
--- a/gnu/services/xorg.scm
+++ b/gnu/services/xorg.scm
@@ -549,8 +549,11 @@ reboot_cmd " shepherd "/sbin/reboot\n"
(list (shepherd-service
(documentation "Xorg display server")
- (provision (list (symbol-append 'xorg-server-
- (string->symbol vt))))
+ (provision (cons (symbol-append 'xorg-server-
+ (string->symbol vt))
+ (if (string=? vt "vt7")
+ '(xorg-server)
+ '())))
(requirement '(user-processes host-name udev))
(start
#~(lambda ()