mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
17 lines
340 B
Plaintext
17 lines
340 B
Plaintext
post_install() {
|
|
[[ $(type -p gtk-update-icon-cache) ]] && /usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
|
|
[[ $(type -p update-desktop-database) ]] && /usr/bin/update-desktop-database -q usr/share/applications
|
|
/bin/true
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
/bin/true
|
|
}
|
|
|
|
post_remove() {
|
|
post_install $1
|
|
/bin/true
|
|
}
|
|
|