mirror of
https://github.com/clearlinux/clr-desktop-defaults.git
synced 2026-09-06 05:31:56 +00:00
Clear Linux now uses a $(datadir)/lightdm/users.conf file in the absence of the admin-provided /etc/lightdm/users.conf, in line with the stateless implementation of the system. In using the users.conf implementation for the user-list element of LightDM, we can avoid an unnecessary dependency on AccountsService simply for list filtering. Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
32 lines
778 B
Makefile
32 lines
778 B
Makefile
EXTRA_DIST = \
|
|
LICENSE \
|
|
README.md \
|
|
clr-desktop-files.sh \
|
|
clr-desktop-files.desktop.in \
|
|
lightdm/clr-gtk-greeter.conf \
|
|
lightdm/clr-lightdm.conf \
|
|
lightdm/users.conf
|
|
|
|
xdgdir = $(datadir)/xdg/autostart
|
|
|
|
xdg_DATA = \
|
|
clr-desktop-files.desktop
|
|
|
|
bin_SCRIPTS = \
|
|
clr-desktop-files.sh
|
|
|
|
# Default configuration for the GTK greeter
|
|
lightdm_gtk_confdir = $(datadir)/lightdm/lightdm-gtk-greeter.conf.d
|
|
lightdm_gtk_conf_DATA = \
|
|
lightdm/clr-gtk-greeter.conf
|
|
|
|
lightdm_confdir = $(datadir)/lightdm/lightdm.conf.d
|
|
lightdm_conf_DATA = \
|
|
lightdm/clr-lightdm.conf
|
|
|
|
# Note that this currently relies on a stateless patch within Clear Linux to
|
|
# support a $(datadir)/lightdm/users.conf file
|
|
lightdm_vendor_confdir = $(datadir)/lightdm
|
|
lightdm_vendor_conf_DATA = \
|
|
lightdm/users.conf
|