summarylogtreecommitdiffstats
path: root/dispass.install
blob: 3791b9990e80208fd9c040bfed923b73827a0c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    if [ -x usr/bin/xdg-icon-resource ]; then
        xdg-icon-resource forceupdate --theme hicolor > /dev/null 2>&1
    fi
}

post_upgrade() {
    post_install "$1"
}

post_remove() {
    post_install "$1"
}