13 lines
350 B
Bash
13 lines
350 B
Bash
#!/bin/bash
|
|
|
|
echo " >> musrfit post uninstall script started ..."
|
|
|
|
/sbin/ldconfig
|
|
|
|
#update .desktop and icons
|
|
if command -v update-desktop-database &>/dev/null; then
|
|
update-desktop-database -q /usr/share/applications || true
|
|
fi
|
|
if command -v gtk-update-icon-cache &>/dev/null; then
|
|
gtk-update-icon-cache -q -t /usr/share/icons/hicolor || true
|
|
fi |