adjusted launcher scripts to use the module path

This commit is contained in:
Sebastian Stenzel
2021-06-10 10:35:02 +02:00
parent 6f3c90465c
commit be6b6e4541
3 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/sh
cd $(dirname $0)
java \
-cp "libs/*" \
-p "libs" \
-Dcryptomator.settingsPath="~/.config/Cryptomator/settings.json" \
-Dcryptomator.ipcPortPath="~/.config/Cryptomator/ipcPort.bin" \
-Dcryptomator.logDir="~/.local/share/Cryptomator/logs" \
@@ -9,4 +9,4 @@ java \
-Djdk.gtk.version=2 \
-Xss2m \
-Xmx512m \
org.cryptomator.launcher.Cryptomator
-m org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator

View File

@@ -1,11 +1,11 @@
#!/bin/sh
cd $(dirname $0)
java \
-cp "libs/*" \
-p "libs" \
-Dcryptomator.settingsPath="~/Library/Application Support/Cryptomator/settings.json" \
-Dcryptomator.ipcPortPath="~/Library/Application Support/Cryptomator/ipcPort.bin" \
-Dcryptomator.logDir="~/Library/Logs/Cryptomator" \
-Dcryptomator.mountPointsDir="/Volumes" \
-Xss20m \
-Xmx512m \
org.cryptomator.launcher.Cryptomator
-m org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator

View File

@@ -1,6 +1,6 @@
@echo off
java ^
-cp "libs/*" ^
-p "libs" ^
-Dcryptomator.settingsPath="~/AppData/Roaming/Cryptomator/settings.json" ^
-Dcryptomator.ipcPortPath="~/AppData/Roaming/Cryptomator/ipcPort.bin" ^
-Dcryptomator.logDir="~/AppData/Roaming/Cryptomator" ^
@@ -8,4 +8,4 @@ java ^
-Dcryptomator.keychainPath="~/AppData/Roaming/Cryptomator/keychain.json" ^
-Xss20m ^
-Xmx512m ^
org.cryptomator.launcher.Cryptomator
-m org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator