-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support alternative launchers for Mac apps.
- Loading branch information
1 parent
9f9088c
commit 3dc0786
Showing
28 changed files
with
761 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# File generated by Colorize Gradle application plugin | ||
# ----------------------------------------------------------------------------- | ||
|
||
LAUNCHER_DIR=$(dirname "$0") | ||
|
||
"$LAUNCHER_DIR/../PlugIns/{{jdk}}/Contents/Home/bin/java" \ | ||
-Djava.launcher.path="$LAUNCHER_DIR" \ | ||
-Djava.library.path="$LAUNCHER_DIR" \ | ||
-Xmx2g \ | ||
-Xdock:name="{{appName}}" \ | ||
-Xdock:icon="$LAUNCHER_DIR/../Resources/icon.icns" \ | ||
-jar "$LAUNCHER_DIR/../Java/{{jarFileName}}" {{appArgs}} |
Oops, something went wrong.