mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
17 lines
377 B
Plaintext
17 lines
377 B
Plaintext
post_install() {
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor > /dev/null 2>&1
|
|
update-desktop-database > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
update-desktop-database > /dev/null 2>&1
|
|
}
|
|
|
|
post_remove() {
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor > /dev/null 2>&1
|
|
update-desktop-database > /dev/null 2>&1
|
|
} |