deimus
deimus

Reputation: 9865

Xlib event when window is moved from one workspace to another

I want to know the event name of application moving from one workspace to another using Xlib.

Upvotes: 0

Views: 866

Answers (1)

Havoc P
Havoc P

Reputation: 8467

You will get a PropertyNotify on _NET_WM_DESKTOP http://standards.freedesktop.org/wm-spec/latest/ar01s05.html#id2568910

(only with WMs that support _NET_WM_DESKTOP, but most standard ones do)

Upvotes: 1

Related Questions