feat: better linux packaging

close #24
This commit is contained in:
edde746
2025-12-26 15:27:59 +01:00
parent 3494fbc5be
commit 2ad06c4dbc
7 changed files with 253 additions and 8 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/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