summarylogtreecommitdiffstats
path: root/.INSTALL
blob: 3893ca5c4bc4f08ae28f47ad46afabfd1f7037f2 (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
_update() {
    update-desktop-database -q

    xdg-icon-resource forceupdate --theme hicolor &>/dev/null

    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor

    ln -sf /opt/whatsie/whatsie /usr/bin/whatsie
}

post_install() {
    _update
}

post_upgrade() {
    post_install
}

post_remove() {
    # Delete the link to the binary
    rm -f /usr/bin/whatsie

    _update
}