1

I was trying to define a custom name as explained in this question, but there is no application package in my com.apple.mrj. Is this a known issue? how can I workaround this?

Thanks in advance.

Community
  • 1
  • 1
Afonso
  • 417
  • 1
  • 5
  • 16

1 Answers1

1

The easiest way to show a custom name on Mac OS X is to use the -Xdock option of java.

java -Xdock:name=CustomName ...

You can see more details using the command java -X. You might also look at OSXAdapter, which puts "preferences, about, and quit functionality into handlers for the Mac OS X application menu."

trashgod
  • 203,806
  • 29
  • 246
  • 1,045