blob: e302b097a577b2cc253ccea6cd6e1f6bb7e124c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
if [[ -x /usr/lib/raveos-kde-theme/auto-apply.sh ]]; then
/usr/lib/raveos-kde-theme/auto-apply.sh || true
fi
}
post_upgrade() {
if [[ -x /usr/lib/raveos-kde-theme/auto-apply.sh ]]; then
/usr/lib/raveos-kde-theme/auto-apply.sh || true
fi
}
|