Hey, could you fix the cryptomator startup script (/usr/bin/cryptomator) to use the same java version as is set in path?
Until 1.4 is out, it doesn't work if your default java on the system is higher than java-8
To fix this, replace the following lines:
export PATH="/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH"
exec /usr/bin/java \
with
export PATH="/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH"
exec /usr/lib/jvm/java-8-openjdk/jre/bin/java \
or better
with
javapath=/usr/lib/jvm/java-8-openjdk/jre/bin/
export PATH="$javapath:$PATH"
exec $javapath/java \
Pinned Comments
ajgraves commented on 2021-05-02 20:49 (UTC)
Everyone, with great thanks to @SailReal, this package now builds Cryptomator from source. If you wish to continue using the binary AppImage build, you need only to install
cryptomator-bin.We made this change to better align with the desires of the community (you've asked a few times to make this a "build from source" package) as well as better align to the package naming convention within the AUR.