summarylogtreecommitdiffstats
path: root/awesome-terminal-fonts.install
blob: 7164520a1cae0bc41ba2fde0673fd65994dabf09 (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 usr/share/fonts/awesome-fonts-fonts
  echo "done."
  if [ ! -f /etc/fonts/conf.d/10-symbols.conf ]
  then
    ln -s /etc/fonts/conf.avail/10-symbols.conf /etc/fonts/conf.d/10-symbols.conf
  fi
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}