Skip to content

Commit

Permalink
cosmic is out of the aur
Browse files Browse the repository at this point in the history
  • Loading branch information
killertofus authored Aug 17, 2024
1 parent 58d74ea commit b0f2e44
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions archinstall/default_profiles/desktops/cosmic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from typing import List, Optional, Any, TYPE_CHECKING

from archinstall.default_profiles.profile import ProfileType, GreeterType
from archinstall.default_profiles.xorg import XorgProfile

if TYPE_CHECKING:
_: Any

class PlasmaProfile(XorgProfile):
def __init__(self):
super().__init__('cosmic-epoch', ProfileType.DesktopEnv, description='')

@property
def packages(self) -> List[str]:
return [
"cosmic",
]

@property
def default_greeter_type(self) -> Optional[GreeterType]:
return GreeterType.cosmic-session

0 comments on commit b0f2e44

Please sign in to comment.