blob: a61ed75a5f58eba14fffb4bdbe6426769e441670 (
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
}
|