Reputation: 527
I have created a JAVA application (JAR) for Windows & Mac.
This JAR has all the required UI.
I thus need to create a cocoa application without any UI.
Upvotes: 0
Views: 1304
Reputation: 285069
Add this in info.plist
<key>LSUIElement</key>
<string>1</string>
Now the application doesn't appear in the dock and the menu bar won't be displayed.
All menu bar applications (menulets) work without an UI
Upvotes: 4