Reputation: 75
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
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