mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
16 lines
233 B
Plaintext
16 lines
233 B
Plaintext
post_install() {
|
|
echo -n "Updating font cache..."
|
|
fc-cache -fs > /dev/null
|
|
mkfontscale /usr/share/fonts/TTF
|
|
mkfontdir /usr/share/fonts/TTF
|
|
echo "done."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|