summarylogtreecommitdiffstats
path: root/mplus-font.install
blob: 1347bf314c2edb8d9a9a277bca82fd5356604f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
  echo -n "Updating font cache... "
  fc-cache -s
  xset fp+ /usr/share/fonts/mplus
  xset fp rehash
  echo "done."
}

post_upgrade() {
  post_install $1
}

post_remove() {
  fc-cache -s
  xset fp- /usr/share/fonts/mplus
  xset fp rehash 
}