From 2a9c486dd1ed0ae4b74687d0c556f89bde5f4f57 Mon Sep 17 00:00:00 2001 From: "Mariya T." <235426764+sigreturn@users.noreply.github.com> Date: Sat, 20 Dec 2025 22:15:09 -0500 Subject: [PATCH 1/3] chore: cosmic is stable now, don't hide it behind --advanced flag --- archinstall/default_profiles/desktops/cosmic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/default_profiles/desktops/cosmic.py b/archinstall/default_profiles/desktops/cosmic.py index 23dac5f963..96742de6f6 100644 --- a/archinstall/default_profiles/desktops/cosmic.py +++ b/archinstall/default_profiles/desktops/cosmic.py @@ -6,7 +6,7 @@ class CosmicProfile(XorgProfile): def __init__(self) -> None: - super().__init__('cosmic-epoch', ProfileType.DesktopEnv, advanced=True) + super().__init__('Cosmic', ProfileType.DesktopEnv) @property @override From 73a001f9c418e6e344a69bb2354f37af815c5393 Mon Sep 17 00:00:00 2001 From: "Mariya T." <235426764+sigreturn@users.noreply.github.com> Date: Sat, 20 Dec 2025 22:24:20 -0500 Subject: [PATCH 2/3] fix: remove --advanced check in GreeterType --- archinstall/default_profiles/profile.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/archinstall/default_profiles/profile.py b/archinstall/default_profiles/profile.py index 478495d231..6897c41ba0 100644 --- a/archinstall/default_profiles/profile.py +++ b/archinstall/default_profiles/profile.py @@ -33,10 +33,7 @@ class GreeterType(Enum): Sddm = 'sddm' Gdm = 'gdm' Ly = 'ly' - - # .. todo:: Remove when we un-hide cosmic behind --advanced - if '--advanced' in sys.argv: - CosmicSession = 'cosmic-greeter' + CosmicSession = 'cosmic-greeter' class SelectResult(Enum): From f06f6eb43af528acfd75e62c9401ead56d4c5d0c Mon Sep 17 00:00:00 2001 From: "Mariya T." <235426764+sigreturn@users.noreply.github.com> Date: Sat, 20 Dec 2025 22:36:40 -0500 Subject: [PATCH 3/3] chore: remove unused import to make linter happy --- archinstall/default_profiles/profile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/archinstall/default_profiles/profile.py b/archinstall/default_profiles/profile.py index 6897c41ba0..8f63df66f9 100644 --- a/archinstall/default_profiles/profile.py +++ b/archinstall/default_profiles/profile.py @@ -1,6 +1,5 @@ from __future__ import annotations -import sys from enum import Enum, auto from typing import TYPE_CHECKING