dwm

Kris's build of dwm
git clone git clone https://git.krisyotam.com/krisyotam/dwm.git
Log | Files | Refs | README | LICENSE

focusfollowmouse.c (177B)


      1 Client *
      2 getpointerclient(void)
      3 {
      4 	Window dummy, win;
      5 	int di;
      6 	unsigned int dui;
      7 	XQueryPointer(dpy, root, &dummy, &win, &di, &di, &di, &di, &dui);
      8 	return wintoclient(win);
      9 }