diff --git a/PKGBUILD b/PKGBUILD index a7810724..c5f76335 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -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) diff --git a/archinstall/default_profiles/desktops/wayfire.py b/archinstall/default_profiles/desktops/wayfire.py deleted file mode 100644 index ddc8f364..00000000 --- a/archinstall/default_profiles/desktops/wayfire.py +++ /dev/null @@ -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