Files
plezy/linux/packaging/after-install.sh
T
2025-12-26 15:27:59 +01:00

11 lines
302 B
Bash

#!/bin/bash
# Update icon cache
if command -v gtk-update-icon-cache &> /dev/null; then
gtk-update-icon-cache -f -t /usr/share/icons/hicolor || true
fi
# Update desktop database
if command -v update-desktop-database &> /dev/null; then
update-desktop-database /usr/share/applications || true
fi