This commit is contained in:
Felix Van der Jeugt 2016-09-15 16:03:54 +02:00
parent ed6cf53632
commit eace36c160
2 changed files with 10 additions and 0 deletions

5
local/bin/bluej Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
APPBASE="/data/courses/java programmeren/bluej"
JAVAPATH="/usr/lib/jvm/jdk1.8.0_73"
CP="$APPBASE/lib/bluej.jar:$JAVAPATH/lib/tools.jar"
"$JAVAPATH/bin/java" -Dawt.useSystemAAFontSettings=on -cp "$CP" bluej.Boot "$@"

5
local/bin/greenfoot Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
APPBASE="/data/courses/java programmeren/greenfoot"
JAVAPATH="/usr/lib/jvm/jdk1.8.0_73"
CP="$APPBASE/lib/bluej.jar:$JAVAPATH/lib/tools.jar"
"$JAVAPATH/bin/java" -cp "$CP" bluej.Boot -greenfoot=true -bluej.compiler.showunchecked=false "$@"