#!/bin/sh

set -e

action="$1"

if [ "$action" = remove ]; then
    update-alternatives --remove x-window-manager \
        /usr/bin/mutter
fi


