From c8ed30574ae4ace2272f8a7beffc03a86f3c80c4 Mon Sep 17 00:00:00 2001 From: Ralph Plawetzki Date: Wed, 14 Jun 2023 06:02:03 +0200 Subject: [PATCH] Introduce JVM property for the SVG image loading path --- .github/workflows/appimage.yml | 1 + dist/linux/appimage/build.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index 56527a716..65add063f 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -92,6 +92,7 @@ jobs: --java-options "-Dcryptomator.ipcSocketPath=\"~/.config/Cryptomator/ipc.socket\"" --java-options "-Dcryptomator.mountPointsDir=\"~/.local/share/Cryptomator/mnt\"" --java-options "-Dcryptomator.showTrayIcon=false" + --java-options "-Dcryptomator.integrationsLinux.appIndicator.svgSource=\"/usr/share/icons/hicolor/symbolic/apps\"" --java-options "-Dcryptomator.buildNumber=\"appimage-${{ needs.get-version.outputs.revNum }}\"" --add-launcher Cryptomator-gtk2=launcher-gtk2.properties --resource-dir dist/linux/resources diff --git a/dist/linux/appimage/build.sh b/dist/linux/appimage/build.sh index a13aec3ce..a5b155100 100755 --- a/dist/linux/appimage/build.sh +++ b/dist/linux/appimage/build.sh @@ -56,6 +56,7 @@ ${JAVA_HOME}/bin/jpackage \ --java-options "-Dcryptomator.ipcSocketPath=\"~/.config/Cryptomator/ipc.socket\"" \ --java-options "-Dcryptomator.mountPointsDir=\"~/.local/share/Cryptomator/mnt\"" \ --java-options "-Dcryptomator.showTrayIcon=false" \ + --java-options "-Dcryptomator.integrationsLinux.appIndicator.svgSource=\"/usr/share/icons/hicolor/symbolic/apps\"" \ --java-options "-Dcryptomator.buildNumber=\"appimage-${REVISION_NO}\"" \ --add-launcher cryptomator-gtk2=launcher-gtk2.properties \ --resource-dir ../resources