Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heusel <christian@heusel.eu>2023-09-14 14:10:26 +0200
committerGitHub <noreply@github.com>2023-09-14 22:10:26 +1000
commitf270a47f27de7176199293a3777d116bf8101cf8 (patch)
treefc95c9af0419780e8f690469b09772667b7e648b
parent9e079020b1c7301ee5a645b6eda3cb2bfdaec920 (diff)
add the option to use ly as display manager (#2004)
Signed-off-by: Christian Heusel <christian@heusel.eu>
-rw-r--r--archinstall/default_profiles/profile.py1
-rw-r--r--archinstall/lib/profile/profiles_handler.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/archinstall/default_profiles/profile.py b/archinstall/default_profiles/profile.py
index ce07c286..c7683013 100644
--- a/archinstall/default_profiles/profile.py
+++ b/archinstall/default_profiles/profile.py
@@ -34,6 +34,7 @@ class GreeterType(Enum):
Lightdm = 'lightdm'
Sddm = 'sddm'
Gdm = 'gdm'
+ Ly = 'ly'
class SelectResult(Enum):
diff --git a/archinstall/lib/profile/profiles_handler.py b/archinstall/lib/profile/profiles_handler.py
index 7e6af3d1..8ea646b6 100644
--- a/archinstall/lib/profile/profiles_handler.py
+++ b/archinstall/lib/profile/profiles_handler.py
@@ -182,6 +182,9 @@ class ProfileHandler:
case GreeterType.Gdm:
packages = ['gdm']
service = ['gdm']
+ case GreeterType.Ly:
+ packages = ['ly']
+ service = ['ly']
if packages:
install_session.add_additional_packages(packages)