vote up 1 vote down star

Hi,

I am trying to make my window manager conform to the ICCCM specifications. I fully understand the reason for the _NET_SUPPORTING_WM_CHECK atom - this ensures that no invalid information stays whenever the window manager isn't running anymore.

What I don't understand is why are no other atoms like _NET_NUMBER_OF_DESKTOPS expected on the supporting window besides _NET_WM_NAME and _NET_SUPPORTING_WM_CHECK itself.

Window managers are supposed to set and overwrite the data but this can be misleading in the case the new window manager isn't compliant.

flag

78% accept rate

1 Answer

vote up 1 vote down

Well the atoms that you are talking about are not the ICCCM. They belong to the newer set of EWMH

So basically it goes like this.

First we had the ICCCM. They are

  • old
  • mature
  • supported by most window managers (in full or in part)
  • easy to implement
  • Unix standard

Then we had EWMH that are

  • newer (GNOME and KDE)
  • not many window managers support them
  • more complex (e.g. virtual desktops)
  • A freedesktop standard.

Freedesktop wanted to make the EWMH as broad as possible (apart from GNOME and KDE) and that is why most of the atoms are SHOULD and not MUST. They are giving a chance to small window manager to claim compliance.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.