blob: 02f605fd85f774eec2d4fd19eba294c3bd74e800 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
if command -v systemctl >/dev/null 2>&1; then
systemctl enable raveos-gnome-theme-apply.service >/dev/null 2>&1 || true
fi
if [[ -x /usr/lib/raveos-gnome-theme/auto-apply.sh ]]; then
/usr/lib/raveos-gnome-theme/auto-apply.sh || true
fi
}
post_upgrade() {
if [[ -x /usr/lib/raveos-gnome-theme/auto-apply.sh ]]; then
/usr/lib/raveos-gnome-theme/auto-apply.sh || true
fi
}
|