Skip to content

Commit 9876558

Browse files
author
Mariya
authored
chore: cosmic is stable now, don't hide it behind --advanced flag (archlinux#4017)
* chore: cosmic is stable now, don't hide it behind --advanced flag * fix: remove --advanced check in GreeterType * chore: remove unused import to make linter happy
1 parent d7b559c commit 9876558

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

archinstall/default_profiles/desktops/cosmic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class CosmicProfile(XorgProfile):
88
def __init__(self) -> None:
9-
super().__init__('cosmic-epoch', ProfileType.DesktopEnv, advanced=True)
9+
super().__init__('Cosmic', ProfileType.DesktopEnv)
1010

1111
@property
1212
@override

archinstall/default_profiles/profile.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import annotations
22

3-
import sys
43
from enum import Enum, auto
54
from typing import TYPE_CHECKING
65

@@ -33,10 +32,7 @@ class GreeterType(Enum):
3332
Sddm = 'sddm'
3433
Gdm = 'gdm'
3534
Ly = 'ly'
36-
37-
# .. todo:: Remove when we un-hide cosmic behind --advanced
38-
if '--advanced' in sys.argv:
39-
CosmicSession = 'cosmic-greeter'
35+
CosmicSession = 'cosmic-greeter'
4036

4137

4238
class SelectResult(Enum):

0 commit comments

Comments
 (0)