xworkmate-app/scripts/linux-postrm.sh
2026-03-16 17:58:37 +08:00

11 lines
314 B
Bash

#!/usr/bin/env bash
set -euo pipefail
if command -v update-desktop-database >/dev/null 2>&1; then
update-desktop-database /usr/share/applications >/dev/null 2>&1 || true
fi
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
gtk-update-icon-cache -q /usr/share/icons/hicolor >/dev/null 2>&1 || true
fi