Revert wayfire (#3432)

This commit is contained in:
Daniel Girtler 2025-05-05 18:08:42 +10:00 committed by GitHub
parent 781760a157
commit 9a98a1500b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 23 deletions

View File

@ -44,7 +44,6 @@ makedepends=(
)
optdepends=(
'python-systemd: Adds journald logging'
'materia-gtk-theme: theming for GTK-based desktop environments'
)
provides=(python-archinstall archinstall)
conflicts=(python-archinstall archinstall-git)

View File

@ -1,22 +0,0 @@
from typing import override
from archinstall.default_profiles.profile import GreeterType, ProfileType
from archinstall.default_profiles.xorg import XorgProfile
class WayfireProfile(XorgProfile):
def __init__(self) -> None:
super().__init__(
"Wayfire",
ProfileType.WindowMgr,
)
@property
@override
def packages(self) -> list[str]:
return ["wayfire", "wayfire-plugins-extra", "wf-shell", "wcm"]
@property
@override
def default_greeter_type(self) -> GreeterType:
return GreeterType.Lightdm