#!/bin/sh
set -e

case "$1" in
  remove)
    rm -rf /usr/share/gnome-shell/extensions/AlphabeticalAppGrid@stuarthayhurst/
  ;;
  *)
  # nothing here
  ;;
esac

#DEBHELPER#