From da8410842b0757f2ee9ebcd850eb9a142fe9d21b Mon Sep 17 00:00:00 2001 From: Ralph Plawetzki Date: Tue, 11 Jul 2023 19:56:22 +0200 Subject: [PATCH] Change showTrayIcon to true for all Linux builds --- .github/workflows/appimage.yml | 2 +- dist/linux/appimage/build.sh | 2 +- dist/linux/debian/rules | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index b8ede8511..a6031628b 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -91,7 +91,7 @@ jobs: --java-options "-Dcryptomator.p12Path=\"@{userhome}/.config/Cryptomator/key.p12\"" --java-options "-Dcryptomator.ipcSocketPath=\"@{userhome}/.config/Cryptomator/ipc.socket\"" --java-options "-Dcryptomator.mountPointsDir=\"@{userhome}/.local/share/Cryptomator/mnt\"" - --java-options "-Dcryptomator.showTrayIcon=false" + --java-options "-Dcryptomator.showTrayIcon=true" --java-options "-Dcryptomator.integrationsLinux.trayIconsDir=\"${TRAYICONSDIR}\"" --java-options "-Dcryptomator.buildNumber=\"appimage-${{ needs.get-version.outputs.revNum }}\"" --add-launcher Cryptomator-gtk2=launcher-gtk2.properties diff --git a/dist/linux/appimage/build.sh b/dist/linux/appimage/build.sh index 80519cc51..b184dbab9 100755 --- a/dist/linux/appimage/build.sh +++ b/dist/linux/appimage/build.sh @@ -56,7 +56,7 @@ ${JAVA_HOME}/bin/jpackage \ --java-options "-Dcryptomator.p12Path=\"@{userhome}/.config/Cryptomator/key.p12\"" \ --java-options "-Dcryptomator.ipcSocketPath=\"@{userhome}/.config/Cryptomator/ipc.socket\"" \ --java-options "-Dcryptomator.mountPointsDir=\"@{userhome}/.local/share/Cryptomator/mnt\"" \ - --java-options "-Dcryptomator.showTrayIcon=false" \ + --java-options "-Dcryptomator.showTrayIcon=true" \ --java-options "-Dcryptomator.integrationsLinux.trayIconsDir=\"${TRAYICONSDIR}\"" \ --java-options "-Dcryptomator.buildNumber=\"appimage-${REVISION_NO}\"" \ --add-launcher cryptomator-gtk2=launcher-gtk2.properties \ diff --git a/dist/linux/debian/rules b/dist/linux/debian/rules index e2d6bec9b..24c29ee2e 100755 --- a/dist/linux/debian/rules +++ b/dist/linux/debian/rules @@ -54,7 +54,7 @@ override_dh_auto_build: --java-options "-Dcryptomator.p12Path=\"@{userhome}/.config/Cryptomator/key.p12\"" \ --java-options "-Dcryptomator.ipcSocketPath=\"@{userhome}/.config/Cryptomator/ipc.socket\"" \ --java-options "-Dcryptomator.mountPointsDir=\"@{userhome}/.local/share/Cryptomator/mnt\"" \ - --java-options "-Dcryptomator.showTrayIcon=false" \ + --java-options "-Dcryptomator.showTrayIcon=true" \ --java-options "-Dcryptomator.integrationsLinux.trayIconsDir=\"/usr/share/icons/hicolor/symbolic/apps\"" \ --java-options "-Dcryptomator.buildNumber=\"deb-${REVISION_NUM}\"" \ --java-options "-Dcryptomator.appVersion=\"${SEMVER_STR}\"" \