Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/default_profiles/desktops/hyperland.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/default_profiles/desktops/hyperland.py')
-rw-r--r--archinstall/default_profiles/desktops/hyperland.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/archinstall/default_profiles/desktops/hyperland.py b/archinstall/default_profiles/desktops/hyperland.py
deleted file mode 100644
index 58ee8cca..00000000
--- a/archinstall/default_profiles/desktops/hyperland.py
+++ /dev/null
@@ -1,27 +0,0 @@
-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