_update_system_configs() { if command -v dconf >/dev/null 2>&1; then dconf update >/dev/null 2>&1 || true fi if command -v glib-compile-schemas >/dev/null 2>&1; then glib-compile-schemas /usr/share/glib-2.0/schemas >/dev/null 2>&1 || true fi } _enable_apply_service() { if command -v systemctl >/dev/null 2>&1; then systemctl enable raveos-gnome-theme-apply.service >/dev/null 2>&1 || true fi } post_install() { _update_system_configs _enable_apply_service } post_upgrade() { _update_system_configs _enable_apply_service } post_remove() { _update_system_configs }