28 lines
664 B
Python
28 lines
664 B
Python
from typing import Any, TYPE_CHECKING
|
|
|
|
from archinstall.default_profiles.profile import ProfileType, GreeterType
|
|
from archinstall.default_profiles.xorg import XorgProfile
|
|
|
|
if TYPE_CHECKING:
|
|
from archinstall.lib.installer import Installer
|
|
_: Any
|
|
|
|
|
|
class CutefishProfile(XorgProfile):
|
|
def __init__(self) -> None:
|
|
super().__init__('Cutefish', ProfileType.DesktopEnv, description='')
|
|
|
|
@property
|
|
def packages(self) -> list[str]:
|
|
return [
|
|
"cutefish",
|
|
"noto-fonts"
|
|
]
|
|
|
|
@property
|
|
def default_greeter_type(self) -> GreeterType | None:
|
|
return GreeterType.Sddm
|
|
|
|
def install(self, install_session: 'Installer') -> None:
|
|
super().install(install_session)
|