index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Martin <martin@rys.pw> | 2024-04-19 14:47:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 22:47:18 +1000 |
commit | 0ea6dbbd7677b94e863b2ab333431716886b5f84 (patch) | |
tree | a9497f996189edb66790f609acf5efd54f2b2da6 /archinstall/default_profiles/desktops/plasma.py | |
parent | f7913f46eede7a2aad7d60faf5cd50a1acf92c03 (diff) |
-rw-r--r-- | archinstall/default_profiles/desktops/plasma.py | 27 |
diff --git a/archinstall/default_profiles/desktops/plasma.py b/archinstall/default_profiles/desktops/plasma.py new file mode 100644 index 00000000..bcc1ea1b --- /dev/null +++ b/archinstall/default_profiles/desktops/plasma.py @@ -0,0 +1,27 @@ +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__('KDE Plasma', ProfileType.DesktopEnv, description='') + + @property + def packages(self) -> List[str]: + return [ + "plasma-meta", + "konsole", + "kwrite", + "dolphin", + "ark", + "plasma-workspace", + "egl-wayland" + ] + + @property + def default_greeter_type(self) -> Optional[GreeterType]: + return GreeterType.Sddm |