Files
system-taskbar/debian/vesperos-taskbar.postinst

14 lines
378 B
Bash
Executable File

#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
if command -v glib-compile-schemas >/dev/null 2>&1; then
glib-compile-schemas /usr/share/glib-2.0/schemas/ || true
fi
if command -v apparmor_parser >/dev/null 2>&1 && [ -f /etc/apparmor.d/gtk4-desktop-icons ]; then
apparmor_parser -r /etc/apparmor.d/gtk4-desktop-icons || true
fi
fi
#DEBHELPER#