blob: 71405abe2b8c569dd2ce7aec5ac0de55e1bce7e8 (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
[[ -x /usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
echo "This package includes systemd user and system services which are not enabled by default."
}
post_remove() {
[[ -x /usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
}
|