1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-25 04:25:22 -04:00

packaging: add com.danklinux.dms.desktop entry, remove custom icon

resolution
This commit is contained in:
bbedward
2026-06-24 10:01:10 -04:00
parent 1a39b7f66c
commit 52834c6a35
13 changed files with 35 additions and 6 deletions
+6 -4
View File
@@ -74,10 +74,11 @@ install-icon:
@echo "Icon installed"
install-desktop:
@echo "Installing desktop entry..."
@echo "Installing desktop entries..."
@install -D -m 644 $(ASSETS_DIR)/dms-open.desktop $(APPLICATIONS_DIR)/dms-open.desktop
@install -D -m 644 $(ASSETS_DIR)/com.danklinux.dms.desktop $(APPLICATIONS_DIR)/com.danklinux.dms.desktop
@update-desktop-database -q $(APPLICATIONS_DIR) 2>/dev/null || true
@echo "Desktop entry installed"
@echo "Desktop entries installed"
install: install-bin install-shell install-completions install-systemd install-icon install-desktop
@echo ""
@@ -116,10 +117,11 @@ uninstall-icon:
@echo "Icon removed"
uninstall-desktop:
@echo "Removing desktop entry..."
@echo "Removing desktop entries..."
@rm -f $(APPLICATIONS_DIR)/dms-open.desktop
@rm -f $(APPLICATIONS_DIR)/com.danklinux.dms.desktop
@update-desktop-database -q $(APPLICATIONS_DIR) 2>/dev/null || true
@echo "Desktop entry removed"
@echo "Desktop entries removed"
uninstall: uninstall-systemd uninstall-desktop uninstall-icon uninstall-completions uninstall-shell uninstall-bin
@echo ""