removed generic Xorg call

This commit is contained in:
Stefano C. Coronado 2019-12-28 22:14:14 -05:00
parent acdbb116fb
commit ca4a7be675

View file

@ -33,7 +33,12 @@ else # Use the default x window manager installed based on lsb_release id
if [ "${distro_id}" == "Ubuntu" ] || [ "${distro_id}" == "Debian" ]; then
x-window-manager &
else
Xorg & #generic case (Fedora, Arch, etc)
if [ "${XDG_SESSION_DESKTOP}" == "KDE" ]; then
startplasma-x11 &
elif [ "${XDG_SESSION_DESKTOP}" == "GNOME" ]; then
mutter &
fi
fi
fi