This article will describe installing Xfce for desktop environment.
Table of Contents
1 Install Xfce
The following command will install Xfce.
#!/bin/sh -e sudo dnf groupinstall -y "Xfce Desktop" sudo reboot
3 Uninstall Xfce
The following command will uninstall Xfce.
#!/bin/sh -e sudo dnf groupremove -y "Xfce" sudo dnf remove -y libxfce4* sudo reboot