dersaft
dersaft

Reputation: 75

(xlib) create my own properties for windowmanagers

Can i create my own properties with:

XChangeProperty(display, w, property, type, format, mode, data, nelements)

or can i only use the properties shown in standards.freedesktop.org?

Upvotes: 2

Views: 127

Answers (1)

n. m. could be an AI
n. m. could be an AI

Reputation: 119847

You can create any property you want.

Just do XInternAtom with your unique atom name, and you have a property of your own. Same for type.

Upvotes: 2

Related Questions