1#!/bin/sh
2
3xprop -root -remove _NET_NUMBER_OF_DESKTOPS \
4    -remove _NET_DESKTOP_NAMES \
5    -remove _NET_CURRENT_DESKTOP 2> /dev/null
6
7export WINDOW_MANAGER=$(which sawfish)
8
9exec $WINDOW_MANAGER &
10sleep 0.1
11exec mate-session $@
12
13