launcher.sh 546 B

123456789101112131415
  1. #!/bin/sh
  2. cd $(dirname $0)
  3. java \
  4. -p "mods" \
  5. -cp "libs/*" \
  6. -Dcryptomator.settingsPath="~/.config/Cryptomator/settings.json" \
  7. -Dcryptomator.ipcSocketPath="~/.config/Cryptomator/ipc.socket" \
  8. -Dcryptomator.logDir="~/.local/share/Cryptomator/logs" \
  9. -Dcryptomator.mountPointsDir="~/.local/share/Cryptomator/mnt" \
  10. -Djdk.gtk.version=2 \
  11. -Xss2m \
  12. -Xmx512m \
  13. --enable-preview \
  14. --enable-native-access=org.cryptomator.jfuse.linux.amd64,org.cryptomator.jfuse.linux.aarch64 \
  15. -m org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator