blob: c3131bc89c16fef206a59eefaac9a88604b9f816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
_update_fonts() {
echo "Rescaning system to build font cache"
fc-cache --force --system-only
}
post_install() {
_update_fonts
}
post_upgrade() {
_update_fonts
}
# vim:set ts=2 sw=2 et:
|