diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-10-11 16:46:55 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-10-11 16:46:55 +0200 |
commit | 15a098bb27c75612fb91aac7344ad47949517fa5 (patch) | |
tree | 2ed8a700543d0ee5f7934592bb6873cee2865cb9 | |
parent | 50bc1a788e8900cb40e8a64a22ddf99393dbe788 (diff) |
adding a coffee mug cursor
-rw-r--r-- | slock.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -8,6 +8,7 @@ | |||
8 | #include <string.h> | 8 | #include <string.h> |
9 | #include <unistd.h> | 9 | #include <unistd.h> |
10 | #include <sys/types.h> | 10 | #include <sys/types.h> |
11 | #include <X11/cursorfont.h> | ||
11 | #include <X11/keysym.h> | 12 | #include <X11/keysym.h> |
12 | #include <X11/Xlib.h> | 13 | #include <X11/Xlib.h> |
13 | #include <X11/Xutil.h> | 14 | #include <X11/Xutil.h> |
@@ -52,6 +53,8 @@ main(int argc, char **argv) { | |||
52 | DisplayWidth(dpy, screen), DisplayHeight(dpy, screen), | 53 | DisplayWidth(dpy, screen), DisplayHeight(dpy, screen), |
53 | 0, DefaultDepth(dpy, screen), CopyFromParent, | 54 | 0, DefaultDepth(dpy, screen), CopyFromParent, |
54 | DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixel, &wa); | 55 | DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixel, &wa); |
56 | |||
57 | XDefineCursor(dpy, w, XCreateFontCursor(dpy, XC_coffee_mug)); | ||
55 | XMapRaised(dpy, w); | 58 | XMapRaised(dpy, w); |
56 | XSync(dpy, False); | 59 | XSync(dpy, False); |
57 | 60 | ||