26 lines
567 B
Python
26 lines
567 B
Python
from typing import override
|
|
|
|
from archinstall.default_profiles.profile import GreeterType, ProfileType
|
|
from archinstall.default_profiles.xorg import XorgProfile
|
|
|
|
|
|
class BudgieProfile(XorgProfile):
|
|
def __init__(self) -> None:
|
|
super().__init__('Budgie', ProfileType.DesktopEnv, description='')
|
|
|
|
@property
|
|
@override
|
|
def packages(self) -> list[str]:
|
|
return [
|
|
"arc-gtk-theme",
|
|
"budgie",
|
|
"mate-terminal",
|
|
"nemo",
|
|
"papirus-icon-theme"
|
|
]
|
|
|
|
@property
|
|
@override
|
|
def default_greeter_type(self) -> GreeterType | None:
|
|
return GreeterType.LightdmSlick
|