summarylogtreecommitdiffstats
path: root/zoom.install
blob: cfd762971d891d5be966f47cd22d26baec5ee56b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
_update() {
	echo -e "\e[34;1m==>\e[39;1m Updating desktop MIME database...\e[0m"
	update-desktop-database -q

	echo -e "\e[34;1m==>\e[39;1m Updating icon cache...\e[0m"
	xdg-icon-resource forceupdate --theme hicolor &>/dev/null

	echo -e "\e[34;1m==>\e[39;1m Updating MIME database...\e[0m"
	update-mime-database -n /usr/share/mime
}

post_install() {
	_update
}

post_upgrade() {
	_update
}

post_remove() {
	_update
}