quick-docs/modules/ROOT/pages/_partials/proc_installing-additional-desktop-enviroments.adoc
Hank Lee 6bc5c63b7f #180-SwitchingDE-edit-partials
Reference to desktop environment rather than package group
2023-01-26 18:14:22 +00:00

25 lines
620 B
Text

[[installing-desktop-environments]]
= Installing additional desktop environments
You can list available desktop environments using the default package manager, [code]`dnf`.
In a terminal use the [code]`dnf group list` command to list all available desktop environments:
----
$ dnf group list --available *desktop
...
----
Install the required desktop environment using the `dnf install` command.
Ensure to prefix with the `@` sign, for example:
----
# dnf install @kde-desktop-environment
----
You can also use the full name using the `groupinstall` command:
----
# dnf groupinstall "KDE Plasma Workspaces"
----