Sandeep T D S
Sandeep T D S

Reputation: 527

Cocoa Application without any GUI?

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

Answers (1)

vadian
vadian

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

Related Questions