From 15199081e542caf38c9c0f163af764616d9420ef Mon Sep 17 00:00:00 2001 From: xenium <76689618+xeniumcode@users.noreply.github.com> Date: Thu, 4 May 2023 21:00:40 +0530 Subject: Adding Hyperland wm (#1785) --- archinstall/default_profiles/desktops/hyperland.py | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 archinstall/default_profiles/desktops/hyperland.py 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() -- cgit v1.2.3-54-g00ecf