Merge pull request #454 from dylanmtaylor/patch-2
Change LXQt back to SDDM per NullRequest's suggestion
This commit is contained in:
commit
a7cff4b8b0
|
|
@ -4,6 +4,9 @@ import archinstall
|
||||||
|
|
||||||
is_top_level_profile = False
|
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__ = [
|
__packages__ = [
|
||||||
"lxqt",
|
"lxqt",
|
||||||
"breeze-icons",
|
"breeze-icons",
|
||||||
|
|
@ -12,8 +15,7 @@ __packages__ = [
|
||||||
"ttf-freefont",
|
"ttf-freefont",
|
||||||
"leafpad",
|
"leafpad",
|
||||||
"slock",
|
"slock",
|
||||||
"lightdm",
|
"sddm",
|
||||||
"lightdm-gtk-greeter",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -45,4 +47,4 @@ if __name__ == 'lxqt':
|
||||||
archinstall.storage['installation_session'].add_additional_packages(__packages__)
|
archinstall.storage['installation_session'].add_additional_packages(__packages__)
|
||||||
|
|
||||||
# Enable autostart of LXQt for all users
|
# Enable autostart of LXQt for all users
|
||||||
archinstall.storage['installation_session'].enable_service('lightdm')
|
archinstall.storage['installation_session'].enable_service('sddm')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue