blob: edc423eaa57f5d79006e614fc9f747ca05f9c82e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo "Updating font cache..."
fc-cache -s
mkfontscale /usr/share/fonts/TTF
mkfontdir /usr/share/fonts/TTF
echo "Done."
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
|