summarylogtreecommitdiffstats
path: root/haguichi.install
blob: ed768202d2486ad5e7e7d7a31dcbc3662cd8b6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

post_install() {
  _themes="hicolor ubuntu-mono-dark ubuntu-mono-light"
  for _t in $_themes; do
    gtk-update-icon-cache -q -t -f usr/share/icons/$_t
  done
  glib-compile-schemas usr/share/glib-2.0/schemas
}

post_update() {
  post_install
}

post_remove() {
  post_install
}