|
|
@ -298,13 +298,13 @@ typedef struct {
|
|
|
|
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
typedef union {
|
|
|
|
int i;
|
|
|
|
int i;
|
|
|
|
unsigned int ui;
|
|
|
|
uint ui;
|
|
|
|
float f;
|
|
|
|
float f;
|
|
|
|
const void *v;
|
|
|
|
const void *v;
|
|
|
|
} Arg;
|
|
|
|
} Arg;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
|
unsigned int mod;
|
|
|
|
uint mod;
|
|
|
|
KeySym keysym;
|
|
|
|
KeySym keysym;
|
|
|
|
void (*func)(const Arg *);
|
|
|
|
void (*func)(const Arg *);
|
|
|
|
const Arg arg;
|
|
|
|
const Arg arg;
|
|
|
@ -3076,7 +3076,7 @@ xinit(void) {
|
|
|
|
|
|
|
|
|
|
|
|
xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
|
|
|
|
xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
|
|
|
|
XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
|
|
|
|
XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
|
|
|
|
PropModeReplace, (unsigned char *)&thispid, 1);
|
|
|
|
PropModeReplace, (uchar *)&thispid, 1);
|
|
|
|
|
|
|
|
|
|
|
|
xresettitle();
|
|
|
|
xresettitle();
|
|
|
|
XMapWindow(xw.dpy, xw.win);
|
|
|
|
XMapWindow(xw.dpy, xw.win);
|
|
|
|