Change LXQt back to SDDM per NullRequest's suggestion

https://github.com/lxqt/lxqt/issues/795
This commit is contained in:
Dylan M. Taylor 2021-05-15 21:59:17 -04:00 committed by GitHub
parent e3c8692bfa
commit 3e0fe67ae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -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')