#!/bin/sh

set -e
if [ "$1" = "purge" ]; then
  if [ -d /etc/X11/fwm ]; then
    rm -r /etc/X11/fwm
  fi
fi
exit 0
