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