blob: 834e32fcd32083e202e98efde6bd56b9160b5647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo -n "Updating font cache..."
fc-cache -fs >/dev/null
mkfontdir /usr/share/fonts/TTF
mkfontscale /usr/share/fonts/TTF
echo "done"
}
post_upgrade() {
post_install
}
|