mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 11:57:17 +08:00
12 lines
265 B
Plaintext
12 lines
265 B
Plaintext
post_install() {
|
|
echo -n "Regenerating font encodings... "
|
|
pushd usr/share/fonts/encodings &>/dev/null
|
|
mkfontscale -n -e "/usr/share/fonts/encodings" -e "/usr/share/fonts/encodings/large"
|
|
popd &>/dev/null
|
|
echo "done."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|