summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-10-11 16:46:55 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-10-11 16:46:55 +0200
commit15a098bb27c75612fb91aac7344ad47949517fa5 (patch)
tree2ed8a700543d0ee5f7934592bb6873cee2865cb9
parent50bc1a788e8900cb40e8a64a22ddf99393dbe788 (diff)
adding a coffee mug cursor
-rw-r--r--slock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/slock.c b/slock.c
index 0c02d96..db3aae0 100644
--- a/slock.c
+++ b/slock.c
@@ -8,6 +8,7 @@
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
+#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
@@ -52,6 +53,8 @@ main(int argc, char **argv) {
DisplayWidth(dpy, screen), DisplayHeight(dpy, screen),
0, DefaultDepth(dpy, screen), CopyFromParent,
DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixel, &wa);
+
+ XDefineCursor(dpy, w, XCreateFontCursor(dpy, XC_coffee_mug));
XMapRaised(dpy, w);
XSync(dpy, False);