Skip to content

Commit

Permalink
add the option to use ly as display manager (#2004)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Heusel <[email protected]>
  • Loading branch information
christian-heusel authored Sep 14, 2023
1 parent 9e07902 commit f270a47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions archinstall/default_profiles/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class GreeterType(Enum):
Lightdm = 'lightdm'
Sddm = 'sddm'
Gdm = 'gdm'
Ly = 'ly'


class SelectResult(Enum):
Expand Down
3 changes: 3 additions & 0 deletions archinstall/lib/profile/profiles_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ def install_greeter(self, install_session: 'Installer', greeter: GreeterType):
case GreeterType.Gdm:
packages = ['gdm']
service = ['gdm']
case GreeterType.Ly:
packages = ['ly']
service = ['ly']

if packages:
install_session.add_additional_packages(packages)
Expand Down

0 comments on commit f270a47

Please sign in to comment.