From c38e0d8b955e9b2afaeb2d39c93bfb618995ecdd Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Tue, 17 Apr 2012 02:21:15 +0000 Subject: [PATCH] * make sure the filebot script runs in headless mode to prevent stealing focus problems --- installer/appbundle/filebot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/appbundle/filebot b/installer/appbundle/filebot index 08356c91..9329e952 100644 --- a/installer/appbundle/filebot +++ b/installer/appbundle/filebot @@ -4,4 +4,4 @@ while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done dir_bin="$( cd -P "$( dirname "$SOURCE" )" && pwd )" dir_app=$dir_bin/../Resources/Java -java -Dunixfs=false -Xmx256m -Dapplication.deployment=app "-Djna.library.path=$dir_app" "-Djava.library.path=$dir_app" -jar "$dir_app/FileBot.jar" "$@" +java -Dunixfs=false -Djava.awt.headless=true -Xmx256m -Dapplication.deployment=app "-Djna.library.path=$dir_app" "-Djava.library.path=$dir_app" -jar "$dir_app/FileBot.jar" "$@"