#!/bin/sh
set -e

case "$1" in
    configure)
        # Update dconf database to apply system-wide settings
        if command -v dconf >/dev/null 2>&1; then
            dconf update || true
        fi
        ;;
esac

#DEBHELPER#

exit 0
