diff options
Diffstat (limited to 'graphics/Alchemy/files')
-rw-r--r-- | graphics/Alchemy/files/Alchemy.desktop | 10 | ||||
-rw-r--r-- | graphics/Alchemy/files/alchemy | 9 | ||||
-rw-r--r-- | graphics/Alchemy/files/alchemy-logo64.png | bin | 0 -> 5133 bytes | |||
-rw-r--r-- | graphics/Alchemy/files/alchemyOpenGL | 9 |
4 files changed, 28 insertions, 0 deletions
diff --git a/graphics/Alchemy/files/Alchemy.desktop b/graphics/Alchemy/files/Alchemy.desktop new file mode 100644 index 0000000000..2dc272c8db --- /dev/null +++ b/graphics/Alchemy/files/Alchemy.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Terminal=false +Icon=alchemy +Type=Application +Categories=Graphic; +TryExec=alchemy +Exec=alchemy +Name=Alchemy +Comment=Sketching tool diff --git a/graphics/Alchemy/files/alchemy b/graphics/Alchemy/files/alchemy new file mode 100644 index 0000000000..bdd1b87328 --- /dev/null +++ b/graphics/Alchemy/files/alchemy @@ -0,0 +1,9 @@ +#!/bin/sh +#cd `dirname $0` +cd /usr/share/Alchemy +if [ -n "$JAVA_HOME" ]; then + $JAVA_HOME/bin/java -jar ./Alchemy.jar $* +else + java -jar ./Alchemy.jar $* +fi +cd $OLDPWD diff --git a/graphics/Alchemy/files/alchemy-logo64.png b/graphics/Alchemy/files/alchemy-logo64.png Binary files differnew file mode 100644 index 0000000000..335b7be7de --- /dev/null +++ b/graphics/Alchemy/files/alchemy-logo64.png diff --git a/graphics/Alchemy/files/alchemyOpenGL b/graphics/Alchemy/files/alchemyOpenGL new file mode 100644 index 0000000000..3239e0cddf --- /dev/null +++ b/graphics/Alchemy/files/alchemyOpenGL @@ -0,0 +1,9 @@ +#!/bin/sh +#cd `dirname $0` +cd /usr/share/Alchemy +if [ -n "$JAVA_HOME" ]; then + $JAVA_HOME/bin/java -client -Xmx256m -Dsun.java2d.opengl=true -jar ./Alchemy.jar $* +else + java -client -Xmx256m -Dsun.java2d.opengl=true -jar ./Alchemy.jar $* +fi +cd $OLDPWD
\ No newline at end of file |