summarylogtreecommitdiffstats
path: root/mist-icon-theme.install
blob: 12be2249c20426c1be634ebbc7570dbbfc551740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ICONDIR="/usr/share/icons/Mist"

update_icon_cache() {
  echo "Updating GTK icon cache..." || return 1
  gtk-update-icon-cache -f -t "${ICONDIR}" || return 1
}


# arg 1:  the new package version
post_install() {
  update_icon_cache
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  update_icon_cache
}

# arg 1:  the old package version
post_remove() {
  update_icon_cache
  rmdir "${ICONDIR}"
}