-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Description
Code in C:
XChangeProperty(disp2, root2, prop_root, XA_PIXMAP, 32, PropModeReplace, (unsigned char *) &pmap_d2, 1);
How to do this in clx?
I tried something like this:
(setf *pixmap* (xlib:create-pixmap
:drawable *root*
:width (xlib:drawable-width *root*)
:height (xlib:drawable-height *root*)
:depth (xlib:drawable-depth *root*)))
(xlib:change-property *root*
:_XROOTMAP_ID
*pixmap*
:pixmap
32
:mode :replace)
but apperently, *pixmap* will just not work.
Do I have to get address of pixmap? And how?
Metadata
Metadata
Assignees
Labels
No labels