summarylogtreecommitdiffstats
path: root/otf.install
blob: 336b6b7b6dafdb6ff5de32174d614e0caabb3f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
  echo -ne $'Updating font cache ...\n\e[1A\e[24C'
  fc-cache -f > /dev/null
  mkfontscale /usr/share/fonts/OTF
  mkfontdir /usr/share/fonts/OTF
  echo -ne $'done.\n'
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}