blob: d4ab8ff5364bce8bbbab0ce7f89bb207570529fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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() {
post_install
}
|