#!/usr/bin/env bash

WM=metacity

if [ ! -x $(which ${WM}) ]; then
    echo "ERROR! Can't find ${WM}."
    exit 1
fi

# Replace window manager and force compositing off.
${WM} --no-composite --replace &
