Remove dead Cutefish desktop profile (#4514)
The cutefish package was never in the official Arch repos (AUR only) and the upstream project is abandoned. Installing this profile would always fail with a pacman "not found" error.
This commit is contained in:
parent
76629ecc15
commit
dd34954011
|
|
@ -1,26 +0,0 @@
|
||||||
from typing import override
|
|
||||||
|
|
||||||
from archinstall.default_profiles.profile import DisplayServerType, GreeterType, Profile, ProfileType
|
|
||||||
|
|
||||||
|
|
||||||
class CutefishProfile(Profile):
|
|
||||||
def __init__(self) -> None:
|
|
||||||
super().__init__(
|
|
||||||
'Cutefish',
|
|
||||||
ProfileType.DesktopEnv,
|
|
||||||
support_gfx_driver=True,
|
|
||||||
display_server=DisplayServerType.Xorg,
|
|
||||||
)
|
|
||||||
|
|
||||||
@property
|
|
||||||
@override
|
|
||||||
def packages(self) -> list[str]:
|
|
||||||
return [
|
|
||||||
'cutefish',
|
|
||||||
'noto-fonts',
|
|
||||||
]
|
|
||||||
|
|
||||||
@property
|
|
||||||
@override
|
|
||||||
def default_greeter_type(self) -> GreeterType:
|
|
||||||
return GreeterType.Sddm
|
|
||||||
Loading…
Reference in New Issue