7195a30d55
* Update my email address * Add systemd configs to debian package * Add systemd configs * Tidy up * Add linux-all.tar.gz * Rename Tachidesk.jar to tachidesk-server.jar * Fix typo * Fix typo
13 lines
384 B
Bash
13 lines
384 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -f /usr/bin/electron ]; then
|
|
echo "Electron executable was not found!
|
|
In order to run this launcher, you need Electron installed."
|
|
exit 1
|
|
fi
|
|
|
|
exec /usr/bin/java \
|
|
-Dsuwayomi.tachidesk.config.server.webUIInterface=electron \
|
|
-Dsuwayomi.tachidesk.config.server.electronPath=/usr/bin/electron \
|
|
-jar /usr/share/java/tachidesk-server/tachidesk-server.jar
|