Include core packages in all Plasma settings

This commit is contained in:
georgemoodier 2026-04-25 18:00:19 +03:00 committed by GitHub
parent bb46e295d1
commit db8695de20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -57,11 +57,11 @@ class PlasmaFlavor(StrEnum):
def packages(self) -> list[str]:
match self:
case PlasmaFlavor.Meta:
return ['plasma-meta']
return ['plasma-meta', 'konsole', 'dolphin', 'kate', 'ark']
case PlasmaFlavor.Plasma:
return ['plasma']
return ['plasma', 'konsole', 'dolphin', 'kate', 'ark']
case PlasmaFlavor.Desktop:
return ['plasma-desktop']
return ['plasma-desktop', 'konsole', 'dolphin']
class PlasmaProfile(Profile):