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:
authorSxmourai <49468969+Sxmourai@users.noreply.github.com>2023-09-22 11:46:59 +0200
committerGitHub <noreply@github.com>2023-09-22 11:46:59 +0200
commitd6e3a4651f2ff944a00e8acfb316db8be2fbcf3e (patch)
treed635e01b760045bf3a84f5148700b8fcf212edfe /archinstall/default_profiles/desktops/hyperland.py
parent4f9e8d2381d9603f99d37fe38462a2f98d059d37 (diff)
Renamed hyperland to hyprland, fixed seatd via post_installation and added waybar-hyprland (#1824)
* Renamed hyperland to hyprland, fixed seatd via post_installation and installed waybar * Removed the launching of seatd on the installation process * Starting to add nvidia support, and automatic configuring of hyprland * Starting to add auto configuration of hyprland... But this will need maintenance * Added hyprpaper auto config Gonna make waybar auto config next * Waybar auto config is starting... I can't test rn I'm on vacation and my connection is quite bad (68 days for arch iso) * Added wlogout support (and swaylock) * Fixed file managers printing * Starting to add a shell config... Definitely don't push this * Reverted custom-shell config (create a separate PR) * Removed systemd-logind, as that was just for testing the selector * Added polkit as an option for the seat. As it's a dependency of the hyprland package * Flake8 fix * The name change wasn't propegated to the menu * Added newline at the end of general_conf.py to not alter it * Removed newline at the end of general_conf.py to not alter it * Renamed the Hyprland class --------- Co-authored-by: Anton Hvornum <anton@hvornum.se> Co-authored-by: Anton Hvornum <anton.feeds+github@gmail.com>
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