blob: 83dc8abb201d933b4fb52a5bf3cfb686e52faab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
_enable_apply_service() {
if command -v systemctl >/dev/null 2>&1; then
systemctl enable raveos-hyprland-theme-apply.service >/dev/null 2>&1 || true
fi
}
post_install() {
_enable_apply_service
}
post_upgrade() {
_enable_apply_service
}
|