We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8683697 commit 9a19da8Copy full SHA for 9a19da8
1 file changed
data/mate-wm
@@ -43,6 +43,13 @@ done
43
# WINDOW_MANAGER overrides all
44
if [ -z "$WINDOW_MANAGER" ] ; then
45
WINDOW_MANAGER=`gsettings get org.mate.session.required-components windowmanager 2> /dev/null | sed -r -e "s/^'([^']*)'$/\\1/"`
46
+ if [ -n "$WINDOW_MANAGER" ] ; then
47
+ if ! command -v "$WINDOW_MANAGER" > /dev/null 2>&1; then
48
+ # Known bug: xcompiz / "Migrate compiz to compiz-manager" (=next block) is now not working anymore.
49
+ echo "Window manager $WINDOW_MANAGER executable not found."
50
+ WINDOW_MANAGER=""
51
+ fi
52
53
fi
54
55
# Migrate compiz to compiz-manager if possible and needed
0 commit comments