mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 14:57:20 +08:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
|
post_install() {
|
||
|
update-desktop-database -q
|
||
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||
|
echo "Please backup your profile before using this!"
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
update-desktop-database -q
|
||
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
post_upgrade $1
|
||
|
}
|