From a6b47d276311913620bcddcba76dd1174c31ee03 Mon Sep 17 00:00:00 2001 From: Dominik Mierzejewski Date: Tue, 10 Jan 2023 12:58:46 +0100 Subject: [PATCH] include MATE in Xclients fallback logic (#1517597) missed Xclients part --- Xclients | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Xclients b/Xclients index 0dcd7bd..fdebe8f 100644 --- a/Xclients +++ b/Xclients @@ -38,6 +38,9 @@ fi if [ -n "$GSESSION" ]; then # by default, we run GNOME. exec "$GSESSION" +elif [ -n "$MSESSION" ]; then + # if GNOME isn't installed, try MATE + exec "$MSESSION" elif [ -n "$STARTKDE" ]; then # if GNOME isn't installed, try KDE. exec "$STARTKDE"