mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 06:37:13 +08:00
16 lines
254 B
Plaintext
16 lines
254 B
Plaintext
|
post_install() {
|
||
|
echo "Running fc-cache to update font cache"
|
||
|
fc-cache -fs
|
||
|
mkfontscale usr/share/fonts/TTF
|
||
|
mkfontdir usr/share/fonts/TTF
|
||
|
echo "Finished updating font cache"
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
post_install
|
||
|
}
|