3

Using the CompizConfig Settings Manager on Ubuntu 13.10 I would like to assign Netbeans 7.4 to workspace 4 (viewport X=2, Y=2) and have it maximized. This approach works just fine for Chromium and Thunderbird. The problem is that using the class=Netbeans IDE 7.4 is not doing anything, and the name=sun-awt-X11-XFramePeer is not matching my Netbeans instance either.

How do I configure my CompizConfig Window Placement to place Netbeans in the appropriate workspace?

Mirage
  • 992
  • 1
  • 7
  • 26

1 Answers1

1

spaces need to be escaped in most shell envoirements, because spaces could indicate different arguments. try:

class="Netbeans IDE 7.4"

or:

class=Netbeans\ IDE\ 7.4
Jappie Kerk
  • 1,257
  • 12
  • 16
  • Thanks for your answer! Unfortunately this did not solve my problems; Netbeans still launches in my current workspace, not maximized. – Mirage Dec 19 '13 at 08:04