index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | xenium <76689618+xeniumcode@users.noreply.github.com> | 2023-05-04 21:00:40 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 17:30:40 +0200 |
commit | 15199081e542caf38c9c0f163af764616d9420ef (patch) | |
tree | 82cf1933a6face2b8c698678131efcf4a9471a85 /archinstall/default_profiles/desktops/hyperland.py | |
parent | f211906a5afcfad553070748a779c3166d2b3b4b (diff) |
-rw-r--r-- | archinstall/default_profiles/desktops/hyperland.py | 31 |
diff --git a/archinstall/default_profiles/desktops/hyperland.py b/archinstall/default_profiles/desktops/hyperland.py new file mode 100644 index 00000000..e55dd7c4 --- /dev/null +++ b/archinstall/default_profiles/desktops/hyperland.py @@ -0,0 +1,31 @@ +from typing import List, Optional, Any, TYPE_CHECKING + +from archinstall.default_profiles.profile import ProfileType, GreeterType +from archinstall.default_profiles.xorg import XorgProfile + +if TYPE_CHECKING: + _: Any + + +class HyperlandProfile(XorgProfile): + def __init__(self): + super().__init__('Hyperland', ProfileType.DesktopEnv, description='') + + @property + def packages(self) -> List[str]: + return [ + "hyprland", + "dunst", + "xdg-desktop-portal-hyprland", + "kitty", + "qt5-wayland", + "qt6-wayland" + ] + + @property + def default_greeter_type(self) -> Optional[GreeterType]: + return GreeterType.Sddm + + def preview_text(self) -> Optional[str]: + text = str(_('Environment type: {}')).format(self.profile_type.value) + return text + '\n' + self.packages_text() |