index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-05-15 21:52:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 21:52:59 +0000 |
commit | 92e8cdae175c162d38253e6376a94828d1c3987a (patch) | |
tree | 3df106f30503809dd73328d2acee443133324820 /profiles | |
parent | 2e168790c83722b8fdffa293f97f16721c1df207 (diff) | |
parent | c036856a3e774d79971a9ff20327d4a973232bfc (diff) |
-rw-r--r-- | profiles/lxqt.py | 15 |
diff --git a/profiles/lxqt.py b/profiles/lxqt.py index af6337e6..3ee9849d 100644 --- a/profiles/lxqt.py +++ b/profiles/lxqt.py @@ -4,7 +4,17 @@ import archinstall is_top_level_profile = False -__packages__ = ["lxqt", "breeze-icons", "oxygen-icons", "xdg-utils", "ttf-freefont", "leafpad", "slock", "sddm"] +__packages__ = [ + "lxqt", + "breeze-icons", + "oxygen-icons", + "xdg-utils", + "ttf-freefont", + "leafpad", + "slock", + "lightdm", + "lightdm-gtk-greeter", +] def _prep_function(*args, **kwargs): @@ -34,4 +44,5 @@ if __name__ == 'lxqt': # Install the LXQt packages archinstall.storage['installation_session'].add_additional_packages(__packages__) - archinstall.storage['installation_session'].enable_service('sddm') # SDDM Display Manager + # Enable autostart of LXQt for all users + archinstall.storage['installation_session'].enable_service('lightdm') |