mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
15 lines
226 B
Plaintext
15 lines
226 B
Plaintext
post_install() {
|
|
echo -n "Updating font cache... "
|
|
fc-cache -s
|
|
mkfontscale /usr/share/fonts/TTF
|
|
mkfontdir /usr/share/fonts/TTF
|
|
echo "done."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
post_install $1
|
|
} |