replacing missing appimage files

This commit is contained in:
Jonathan Shook
2020-03-17 12:44:31 -05:00
parent b79acc0721
commit d62df660f6
4 changed files with 2076 additions and 2047 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
[Desktop Entry]
Name=nosqlbench
Exec=nb %F
Icon=nb
Type=Application
Categories=Development;Network;Utility;Science;
Comment=nosqlbench
MimeType=text/yaml;application/yaml;
Name[nb]=nb
Terminal=false
StartupNotify=true
NoDisplay=false

BIN
nb/appimage/skel/nb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

15
nb/appimage/skel/usr/bin/nb Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#set -x
DIR="$(dirname "$(readlink -f "$0")")"
if [ "$1" = "-DN" ]
then
shift
exec $DIR/jre/bin/java -Dnashorn.args="--no-deprecation-warning" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar $DIR/nb.jar "$@"
elif [ "$1" = "-DY" ]
then
shift
exec $DIR/jre/bin/java -Dnashorn.args="--no-deprecation-warning" -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar $DIR/nb.jar "$@"
else
exec $DIR/jre/bin/java -Dnashorn.args="--no-deprecation-warning" -jar $DIR/nb.jar "$@"
fi