Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorxenium <76689618+xeniumcode@users.noreply.github.com>2023-05-04 21:00:40 +0530
committerGitHub <noreply@github.com>2023-05-04 17:30:40 +0200
commit15199081e542caf38c9c0f163af764616d9420ef (patch)
tree82cf1933a6face2b8c698678131efcf4a9471a85 /archinstall
parentf211906a5afcfad553070748a779c3166d2b3b4b (diff)
Adding Hyperland wm (#1785)
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/default_profiles/desktops/hyperland.py31
1 files changed, 31 insertions, 0 deletions
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()