blob: fb5b069975682b715d8bc06ad0f1d93b696679e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo "Updating icon cache"
gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
echo "Updating mime entries"
update-desktop-database -q
}
post_upgrade() {
echo "Updating icon cache"
gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
echo "Updating mime entries"
update-desktop-database -q
}
post_remove() {
echo "Updating icon cache"
gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
echo "Updating mime entries"
update-desktop-database -q
}
|