#!/bin/sh
set -e

#DEBHELPER#

case "$1" in
  configure)
 gtk-update-icon-cache /usr/share/icons/hicolor
if [ -x /usr/bin/update-desktop-database ]; then
   /usr/bin/update-desktop-database -q
fi
    ;;
esac
