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