mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
15 lines
273 B
Plaintext
15 lines
273 B
Plaintext
post_install() {
|
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
if [ -f usr/bin/update-mime-database ]; then
|
|
update-mime-database usr/share/mime &> /dev/null
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
post_install $1
|
|
}
|