Configuration of dwm for Mac Computers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

298 lines
7.1 KiB

18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include "dwm.h"
  6. #include <errno.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <unistd.h>
  11. #include <sys/select.h>
  12. #include <X11/cursorfont.h>
  13. #include <X11/keysym.h>
  14. #include <X11/Xatom.h>
  15. #include <X11/Xproto.h>
  16. /* extern */
  17. char stext[1024];
  18. Bool *seltag;
  19. int screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
  20. unsigned int ntags, numlockmask;
  21. Atom wmatom[WMLast], netatom[NetLast];
  22. Bool running = True;
  23. Bool issel = True;
  24. Client *clients = NULL;
  25. Client *sel = NULL;
  26. Cursor cursor[CurLast];
  27. Display *dpy;
  28. DC dc = {0};
  29. Window root, barwin;
  30. /* static */
  31. static int (*xerrorxlib)(Display *, XErrorEvent *);
  32. static Bool otherwm, readin;
  33. static void
  34. cleanup()
  35. {
  36. close(STDIN_FILENO);
  37. while(sel) {
  38. resize(sel, True, TopLeft);
  39. unmanage(sel);
  40. }
  41. if(dc.font.set)
  42. XFreeFontSet(dpy, dc.font.set);
  43. else
  44. XFreeFont(dpy, dc.font.xfont);
  45. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  46. XFreePixmap(dpy, dc.drawable);
  47. XFreeGC(dpy, dc.gc);
  48. XDestroyWindow(dpy, barwin);
  49. XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
  50. XSync(dpy, False);
  51. }
  52. static void
  53. scan()
  54. {
  55. unsigned int i, num;
  56. Window *wins, d1, d2;
  57. XWindowAttributes wa;
  58. wins = NULL;
  59. if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  60. for(i = 0; i < num; i++) {
  61. if(!XGetWindowAttributes(dpy, wins[i], &wa))
  62. continue;
  63. if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  64. continue;
  65. if(wa.map_state == IsViewable)
  66. manage(wins[i], &wa);
  67. }
  68. }
  69. if(wins)
  70. XFree(wins);
  71. }
  72. static void
  73. setup()
  74. {
  75. int i, j;
  76. unsigned int mask;
  77. Window w;
  78. XModifierKeymap *modmap;
  79. XSetWindowAttributes wa;
  80. /* init atoms */
  81. wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  82. wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  83. netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  84. netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  85. XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
  86. PropModeReplace, (unsigned char *) netatom, NetLast);
  87. /* init cursors */
  88. cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
  89. cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
  90. cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
  91. modmap = XGetModifierMapping(dpy);
  92. for (i = 0; i < 8; i++) {
  93. for (j = 0; j < modmap->max_keypermod; j++) {
  94. if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
  95. numlockmask = (1 << i);
  96. }
  97. }
  98. XFree(modmap);
  99. wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask | EnterWindowMask | LeaveWindowMask;
  100. wa.cursor = cursor[CurNormal];
  101. XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
  102. grabkeys();
  103. initrregs();
  104. for(ntags = 0; tags[ntags]; ntags++);
  105. seltag = emallocz(sizeof(Bool) * ntags);
  106. seltag[0] = True;
  107. /* style */
  108. dc.bg[0] = getcolor(NORMBGCOLOR);
  109. dc.fg[0] = getcolor(NORMFGCOLOR);
  110. dc.bg[1] = getcolor(SELBGCOLOR);
  111. dc.fg[1] = getcolor(SELFGCOLOR);
  112. setfont(FONT);
  113. sx = sy = 0;
  114. sw = DisplayWidth(dpy, screen);
  115. sh = DisplayHeight(dpy, screen);
  116. mw = (sw * MASTERW) / 100;
  117. bx = by = 0;
  118. bw = sw;
  119. dc.h = bh = dc.font.height + 4;
  120. wa.override_redirect = 1;
  121. wa.background_pixmap = ParentRelative;
  122. wa.event_mask = ButtonPressMask | ExposureMask;
  123. barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen),
  124. CopyFromParent, DefaultVisual(dpy, screen),
  125. CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
  126. XDefineCursor(dpy, barwin, cursor[CurNormal]);
  127. XMapRaised(dpy, barwin);
  128. dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
  129. dc.gc = XCreateGC(dpy, root, 0, 0);
  130. XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
  131. issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
  132. strcpy(stext, "dwm-"VERSION);
  133. }
  134. /*
  135. * Startup Error handler to check if another window manager
  136. * is already running.
  137. */
  138. static int
  139. xerrorstart(Display *dsply, XErrorEvent *ee)
  140. {
  141. otherwm = True;
  142. return -1;
  143. }
  144. /* extern */
  145. int
  146. getproto(Window w)
  147. {
  148. int i, format, protos, status;
  149. unsigned long extra, res;
  150. Atom *protocols, real;
  151. protos = 0;
  152. status = XGetWindowProperty(dpy, w, wmatom[WMProtocols], 0L, 20L, False,
  153. XA_ATOM, &real, &format, &res, &extra, (unsigned char **)&protocols);
  154. if(status != Success || protocols == 0)
  155. return protos;
  156. for(i = 0; i < res; i++)
  157. if(protocols[i] == wmatom[WMDelete])
  158. protos |= PROTODELWIN;
  159. free(protocols);
  160. return protos;
  161. }
  162. void
  163. sendevent(Window w, Atom a, long value)
  164. {
  165. XEvent e;
  166. e.type = ClientMessage;
  167. e.xclient.window = w;
  168. e.xclient.message_type = a;
  169. e.xclient.format = 32;
  170. e.xclient.data.l[0] = value;
  171. e.xclient.data.l[1] = CurrentTime;
  172. XSendEvent(dpy, w, False, NoEventMask, &e);
  173. XSync(dpy, False);
  174. }
  175. void
  176. quit(Arg *arg)
  177. {
  178. readin = running = False;
  179. }
  180. /*
  181. * There's no way to check accesses to destroyed windows, thus those cases are
  182. * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
  183. * default error handler, which calls exit().
  184. */
  185. int
  186. xerror(Display *dpy, XErrorEvent *ee)
  187. {
  188. if(ee->error_code == BadWindow
  189. || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
  190. || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
  191. || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
  192. || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
  193. || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
  194. || (ee->request_code == X_GrabKey && ee->error_code == BadAccess))
  195. return 0;
  196. fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
  197. ee->request_code, ee->error_code);
  198. return xerrorxlib(dpy, ee); /* may call exit() */
  199. }
  200. int
  201. main(int argc, char *argv[])
  202. {
  203. int r, xfd;
  204. fd_set rd;
  205. if(argc == 2 && !strncmp("-v", argv[1], 3)) {
  206. fputs("dwm-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
  207. exit(EXIT_SUCCESS);
  208. }
  209. else if(argc != 1)
  210. eprint("usage: dwm [-v]\n");
  211. dpy = XOpenDisplay(0);
  212. if(!dpy)
  213. eprint("dwm: cannot open display\n");
  214. xfd = ConnectionNumber(dpy);
  215. screen = DefaultScreen(dpy);
  216. root = RootWindow(dpy, screen);
  217. otherwm = False;
  218. XSetErrorHandler(xerrorstart);
  219. /* this causes an error if some other window manager is running */
  220. XSelectInput(dpy, root, SubstructureRedirectMask);
  221. XSync(dpy, False);
  222. if(otherwm)
  223. eprint("dwm: another window manager is already running\n");
  224. XSync(dpy, False);
  225. XSetErrorHandler(NULL);
  226. xerrorxlib = XSetErrorHandler(xerror);
  227. XSync(dpy, False);
  228. setup();
  229. drawstatus();
  230. scan();
  231. /* main event loop, also reads status text from stdin */
  232. XSync(dpy, False);
  233. procevent();
  234. readin = True;
  235. while(running) {
  236. FD_ZERO(&rd);
  237. if(readin)
  238. FD_SET(STDIN_FILENO, &rd);
  239. FD_SET(xfd, &rd);
  240. r = select(xfd + 1, &rd, NULL, NULL, NULL);
  241. if((r == -1) && (errno == EINTR))
  242. continue;
  243. if(r > 0) {
  244. if(readin && FD_ISSET(STDIN_FILENO, &rd)) {
  245. readin = NULL != fgets(stext, sizeof(stext), stdin);
  246. if(readin)
  247. stext[strlen(stext) - 1] = 0;
  248. else
  249. strcpy(stext, "broken pipe");
  250. drawstatus();
  251. }
  252. }
  253. else if(r < 0)
  254. eprint("select failed\n");
  255. procevent();
  256. }
  257. cleanup();
  258. XCloseDisplay(dpy);
  259. return 0;
  260. }