blob: 6437450ca90032316c38426df90b7032916cd1eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
# Update desktop database, icon cache and mime types
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
echo "LANDrop has been installed."
echo "You can run it from your application menu or by typing 'landrop' in your terminal."
}
post_upgrade() {
post_install
}
post_remove() {
# Update desktop database and icon cache
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|