#!/bin/bash

set -e

if [[ "$1" = "remove" ]]; then
	find /usr/share/applications -name '*.desktop' | \
	    xargs grep -l ^X-Kaisen-Package | \
	    xargs rm -f || true
fi

#DEBHELPER#
