Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-16 14:10:56 +0000
committerGitHub <noreply@github.com>2021-05-16 14:10:56 +0000
commita7cff4b8b080ed7a5e75f82ef201e7b3701bb8ae (patch)
treef2b49770d736ad34b34e88c9ef9b40d0ebee9e04
parent9f14f2cc53c041051837815ff00907a1ae28c415 (diff)
parent3e0fe67ae3b11dc332be4749f23d8077ba82d10d (diff)
Merge pull request #454 from dylanmtaylor/patch-2
Change LXQt back to SDDM per NullRequest's suggestion
-rw-r--r--profiles/lxqt.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/profiles/lxqt.py b/profiles/lxqt.py
index 3ee9849d..2419b4fa 100644
--- a/profiles/lxqt.py
+++ b/profiles/lxqt.py
@@ -4,6 +4,9 @@ import archinstall
is_top_level_profile = False
+# NOTE: SDDM is the only officially supported greeter for LXQt, so unlike other DEs, lightdm is not used here.
+# LXQt works with lightdm, but since this is not supported, we will not default to this.
+# https://github.com/lxqt/lxqt/issues/795
__packages__ = [
"lxqt",
"breeze-icons",
@@ -12,8 +15,7 @@ __packages__ = [
"ttf-freefont",
"leafpad",
"slock",
- "lightdm",
- "lightdm-gtk-greeter",
+ "sddm",
]
@@ -45,4 +47,4 @@ if __name__ == 'lxqt':
archinstall.storage['installation_session'].add_additional_packages(__packages__)
# Enable autostart of LXQt for all users
- archinstall.storage['installation_session'].enable_service('lightdm')
+ archinstall.storage['installation_session'].enable_service('sddm')