From e110492b5669da9d158d12357384a1d335145772 Mon Sep 17 00:00:00 2001 From: uday Date: Wed, 29 Jan 2025 02:45:31 +0530 Subject: [PATCH] Replace Sway with Hyprland in profile seat selection (#3145) --- archinstall/default_profiles/desktops/hyprland.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archinstall/default_profiles/desktops/hyprland.py b/archinstall/default_profiles/desktops/hyprland.py index 598d14f0..3c0f1bbd 100644 --- a/archinstall/default_profiles/desktops/hyprland.py +++ b/archinstall/default_profiles/desktops/hyprland.py @@ -50,8 +50,8 @@ class HyprlandProfile(XorgProfile): def _ask_seat_access(self) -> None: # need to activate seat service and add to seat group - header = str(_('Sway needs access to your seat (collection of hardware devices i.e. keyboard, mouse, etc)')) - header += '\n' + str(_('Choose an option to give Sway access to your hardware')) + '\n' + header = str(_('Hyprland needs access to your seat (collection of hardware devices i.e. keyboard, mouse, etc)')) + header += '\n' + str(_('Choose an option to give Hyprland access to your hardware')) + '\n' items = [MenuItem(s.value, value=s) for s in SeatAccess] group = MenuItemGroup(items, sort_items=True)