-
Notifications
You must be signed in to change notification settings - Fork 0
/
xnobar.c
55 lines (48 loc) · 1.08 KB
/
xnobar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <stdio.h>
#include <string.h>
Display *Dpy;
Window Root;
int Scr;
unsigned long Black;
GC gc;
/* configurations */
const int char_height = 10;
const char *default_string = "X no bar";
void
draw ()
{
XTextProperty name;
const char * text = XGetWMName (Dpy, Root, &name) ? (char *)name.value
: default_string;
XClearWindow (Dpy, Root);
XDrawString (Dpy, Root, gc, 0, char_height, text, strlen (text));
}
void
mainloop ()
{
XEvent e;
draw ();
for (;;) {
XNextEvent (Dpy, &e);
if ((e.type == Expose && e.xexpose.count == 0) ||
(e.type == PropertyNotify))
draw ();
}
}
int
main ()
{
Dpy = XOpenDisplay (NULL);
if (!Dpy) return 1;
Root = DefaultRootWindow (Dpy);
Scr = DefaultScreen (Dpy);
Black = BlackPixel (Dpy, Scr);
gc = XCreateGC (Dpy, Root, 0, NULL);
XSetForeground (Dpy, gc, Black);
XSelectInput (Dpy, Root, ExposureMask | PropertyChangeMask);
mainloop ();
XCloseDisplay (Dpy);
return 0;
}