blob: 87da628df985e9c1c759dd787d71ad287462baf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# Update icon cache after removal
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor || :
fi
# Update desktop database after removal
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q /usr/share/applications || :
fi
# Update mime database after removal
if [ -x /usr/bin/update-mime-database ]; then
/usr/bin/update-mime-database /usr/share/mime || :
fi
# Try XDG icon cache update if available
if [ -x /usr/bin/xdg-icon-resource ]; then
/usr/bin/xdg-icon-resource forceupdate --theme hicolor || :
fi
|