Configuration file for DWM on MacBook Air
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.

1721 lines
41 KiB

17 years ago
16 years ago
16 years ago
16 years ago
17 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
17 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
  1. /* See LICENSE file for copyright and license details.
  2. *
  3. * dynamic window manager is designed like any other X client as well. It is
  4. * driven through handling X events. In contrast to other X clients, a window
  5. * manager selects for SubstructureRedirectMask on the root window, to receive
  6. * events about window (dis-)appearance. Only one X connection at a time is
  7. * allowed to select for this event mask.
  8. *
  9. * Calls to fetch an X event from the event queue are blocking. Due reading
  10. * status text from standard input, a select()-driven main loop has been
  11. * implemented which selects for reads on the X connection and STDIN_FILENO to
  12. * handle all data smoothly. The event handlers of dwm are organized in an
  13. * array which is accessed whenever a new event has been fetched. This allows
  14. * event dispatching in O(1) time.
  15. *
  16. * Each child of the root window is called a client, except windows which have
  17. * set the override_redirect flag. Clients are organized in a global
  18. * doubly-linked client list, the focus history is remembered through a global
  19. * stack list. Each client contains a bit array to indicate the tags of a
  20. * client.
  21. *
  22. * Keys and tagging rules are organized as arrays and defined in config.h.
  23. *
  24. * To understand everything else, start reading main().
  25. */
  26. #include <errno.h>
  27. #include <locale.h>
  28. #include <stdarg.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <unistd.h>
  33. #include <sys/select.h>
  34. #include <sys/types.h>
  35. #include <sys/wait.h>
  36. #include <X11/cursorfont.h>
  37. #include <X11/keysym.h>
  38. #include <X11/Xatom.h>
  39. #include <X11/Xlib.h>
  40. #include <X11/Xproto.h>
  41. #include <X11/Xutil.h>
  42. #ifdef XINERAMA
  43. #include <X11/extensions/Xinerama.h>
  44. #endif
  45. /* macros */
  46. #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
  47. #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
  48. #define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH))
  49. #define ISVISIBLE(x) (x->tags & tagset[seltags])
  50. #define LENGTH(x) (sizeof x / sizeof x[0])
  51. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  52. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  53. #define MAXTAGLEN 16
  54. #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
  55. #define TAGMASK ((int)((1LL << LENGTH(tags)) - 1))
  56. #define TEXTW(x) (textnw(x, strlen(x)) + dc.font.height)
  57. /* enums */
  58. enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
  59. enum { ColBorder, ColFG, ColBG, ColLast }; /* color */
  60. enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
  61. enum { WMProtocols, WMDelete, WMName, WMState, WMLast };/* default atoms */
  62. enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
  63. ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
  64. typedef union {
  65. int i;
  66. unsigned int ui;
  67. float f;
  68. void *v;
  69. } Arg;
  70. typedef struct {
  71. unsigned int click;
  72. unsigned int mask;
  73. unsigned int button;
  74. void (*func)(const Arg *arg);
  75. const Arg arg;
  76. } Button;
  77. typedef struct Client Client;
  78. struct Client {
  79. char name[256];
  80. float mina, maxa;
  81. int x, y, w, h;
  82. int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  83. int bw, oldbw;
  84. unsigned int tags;
  85. Bool isfixed, isfloating, isurgent;
  86. Client *next;
  87. Client *snext;
  88. Window win;
  89. };
  90. typedef struct {
  91. int x, y, w, h;
  92. unsigned long norm[ColLast];
  93. unsigned long sel[ColLast];
  94. Drawable drawable;
  95. GC gc;
  96. struct {
  97. int ascent;
  98. int descent;
  99. int height;
  100. XFontSet set;
  101. XFontStruct *xfont;
  102. } font;
  103. } DC; /* draw context */
  104. typedef struct {
  105. unsigned int mod;
  106. KeySym keysym;
  107. void (*func)(const Arg *);
  108. const Arg arg;
  109. } Key;
  110. typedef struct {
  111. const char *symbol;
  112. void (*arrange)(void);
  113. } Layout;
  114. typedef struct {
  115. const char *class;
  116. const char *instance;
  117. const char *title;
  118. unsigned int tags;
  119. Bool isfloating;
  120. } Rule;
  121. /* function declarations */
  122. static void applyrules(Client *c);
  123. static void arrange(void);
  124. static void attach(Client *c);
  125. static void attachstack(Client *c);
  126. static void buttonpress(XEvent *e);
  127. static void checkotherwm(void);
  128. static void cleanup(void);
  129. static void clearurgent(void);
  130. static void configure(Client *c);
  131. static void configurenotify(XEvent *e);
  132. static void configurerequest(XEvent *e);
  133. static void destroynotify(XEvent *e);
  134. static void detach(Client *c);
  135. static void detachstack(Client *c);
  136. static void die(const char *errstr, ...);
  137. static void drawbar(void);
  138. static void drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]);
  139. static void drawtext(const char *text, unsigned long col[ColLast], Bool invert);
  140. static void enternotify(XEvent *e);
  141. static void expose(XEvent *e);
  142. static void focus(Client *c);
  143. static void focusin(XEvent *e);
  144. static void focusstack(const Arg *arg);
  145. static Client *getclient(Window w);
  146. static unsigned long getcolor(const char *colstr);
  147. static long getstate(Window w);
  148. static Bool gettextprop(Window w, Atom atom, char *text, unsigned int size);
  149. static void grabbuttons(Client *c, Bool focused);
  150. static void grabkeys(void);
  151. static void initfont(const char *fontstr);
  152. static Bool isprotodel(Client *c);
  153. static void keypress(XEvent *e);
  154. static void killclient(const Arg *arg);
  155. static void manage(Window w, XWindowAttributes *wa);
  156. static void mappingnotify(XEvent *e);
  157. static void maprequest(XEvent *e);
  158. static void monocle(void);
  159. static void movemouse(const Arg *arg);
  160. static Client *nexttiled(Client *c);
  161. static void propertynotify(XEvent *e);
  162. static void quit(const Arg *arg);
  163. static void resize(Client *c, int x, int y, int w, int h, Bool sizehints);
  164. static void resizemouse(const Arg *arg);
  165. static void restack(void);
  166. static void run(void);
  167. static void scan(void);
  168. static void setclientstate(Client *c, long state);
  169. static void setlayout(const Arg *arg);
  170. static void setmfact(const Arg *arg);
  171. static void setup(void);
  172. static void spawn(const Arg *arg);
  173. static void tag(const Arg *arg);
  174. static int textnw(const char *text, unsigned int len);
  175. static void tile(void);
  176. static void togglebar(const Arg *arg);
  177. static void togglefloating(const Arg *arg);
  178. static void toggletag(const Arg *arg);
  179. static void toggleview(const Arg *arg);
  180. static void unmanage(Client *c);
  181. static void unmapnotify(XEvent *e);
  182. static void updatebar(void);
  183. static void updategeom(void);
  184. static void updatesizehints(Client *c);
  185. static void updatetitle(Client *c);
  186. static void updatewmhints(Client *c);
  187. static void view(const Arg *arg);
  188. static int xerror(Display *dpy, XErrorEvent *ee);
  189. static int xerrordummy(Display *dpy, XErrorEvent *ee);
  190. static int xerrorstart(Display *dpy, XErrorEvent *ee);
  191. static void zoom(const Arg *arg);
  192. /* variables */
  193. static char stext[256];
  194. static int screen, sx, sy, sw, sh;
  195. static int by, bh, blw, wx, wy, ww, wh;
  196. static unsigned int seltags = 0, sellt = 0;
  197. static int (*xerrorxlib)(Display *, XErrorEvent *);
  198. static unsigned int numlockmask = 0;
  199. static void (*handler[LASTEvent]) (XEvent *) = {
  200. [ButtonPress] = buttonpress,
  201. [ConfigureRequest] = configurerequest,
  202. [ConfigureNotify] = configurenotify,
  203. [DestroyNotify] = destroynotify,
  204. [EnterNotify] = enternotify,
  205. [Expose] = expose,
  206. [FocusIn] = focusin,
  207. [KeyPress] = keypress,
  208. [MappingNotify] = mappingnotify,
  209. [MapRequest] = maprequest,
  210. [PropertyNotify] = propertynotify,
  211. [UnmapNotify] = unmapnotify
  212. };
  213. static Atom wmatom[WMLast], netatom[NetLast];
  214. static Bool otherwm;
  215. static Bool running = True;
  216. static unsigned int tagset[] = {1, 1}; /* after start, first tag is selected */
  217. static Client *clients = NULL;
  218. static Client *sel = NULL;
  219. static Client *stack = NULL;
  220. static Cursor cursor[CurLast];
  221. static Display *dpy;
  222. static DC dc = {0};
  223. static Layout *lt[] = { NULL, NULL };
  224. static Window root, barwin;
  225. /* configuration, allows nested code to access above variables */
  226. #include "config.h"
  227. /* compile-time check if all tags fit into an unsigned int bit array. */
  228. struct NumTags { char limitexceeded[sizeof(unsigned int) * 8 < LENGTH(tags) ? -1 : 1]; };
  229. /* function implementations */
  230. void
  231. applyrules(Client *c) {
  232. unsigned int i;
  233. Rule *r;
  234. XClassHint ch = { 0 };
  235. /* rule matching */
  236. XGetClassHint(dpy, c->win, &ch);
  237. for(i = 0; i < LENGTH(rules); i++) {
  238. r = &rules[i];
  239. if((!r->title || strstr(c->name, r->title))
  240. && (!r->class || (ch.res_class && strstr(ch.res_class, r->class)))
  241. && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) {
  242. c->isfloating = r->isfloating;
  243. c->tags |= r->tags & TAGMASK;
  244. }
  245. }
  246. if(ch.res_class)
  247. XFree(ch.res_class);
  248. if(ch.res_name)
  249. XFree(ch.res_name);
  250. if(!c->tags)
  251. c->tags = tagset[seltags];
  252. }
  253. void
  254. arrange(void) {
  255. Client *c;
  256. for(c = clients; c; c = c->next)
  257. if(ISVISIBLE(c)) {
  258. XMoveWindow(dpy, c->win, c->x, c->y);
  259. if(!lt[sellt]->arrange || c->isfloating)
  260. resize(c, c->x, c->y, c->w, c->h, True);
  261. }
  262. else {
  263. XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
  264. }
  265. focus(NULL);
  266. if(lt[sellt]->arrange)
  267. lt[sellt]->arrange();
  268. restack();
  269. }
  270. void
  271. attach(Client *c) {
  272. c->next = clients;
  273. clients = c;
  274. }
  275. void
  276. attachstack(Client *c) {
  277. c->snext = stack;
  278. stack = c;
  279. }
  280. void
  281. buttonpress(XEvent *e) {
  282. unsigned int i, x, click;
  283. Arg arg = {0};
  284. Client *c;
  285. XButtonPressedEvent *ev = &e->xbutton;
  286. click = ClkRootWin;
  287. if(ev->window == barwin) {
  288. i = x = 0;
  289. do x += TEXTW(tags[i]); while(ev->x >= x && ++i < LENGTH(tags));
  290. if(i < LENGTH(tags)) {
  291. click = ClkTagBar;
  292. arg.ui = 1 << i;
  293. }
  294. else if(ev->x < x + blw)
  295. click = ClkLtSymbol;
  296. else if(ev->x > wx + ww - TEXTW(stext))
  297. click = ClkStatusText;
  298. else
  299. click = ClkWinTitle;
  300. }
  301. else if((c = getclient(ev->window))) {
  302. focus(c);
  303. click = ClkClientWin;
  304. }
  305. for(i = 0; i < LENGTH(buttons); i++)
  306. if(click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
  307. && CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
  308. buttons[i].func(click == ClkTagBar ? &arg : &buttons[i].arg);
  309. }
  310. void
  311. checkotherwm(void) {
  312. otherwm = False;
  313. XSetErrorHandler(xerrorstart);
  314. /* this causes an error if some other window manager is running */
  315. XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
  316. XSync(dpy, False);
  317. if(otherwm)
  318. die("dwm: another window manager is already running\n");
  319. XSetErrorHandler(NULL);
  320. xerrorxlib = XSetErrorHandler(xerror);
  321. XSync(dpy, False);
  322. }
  323. void
  324. cleanup(void) {
  325. Arg a = {.i = ~0};
  326. Layout foo = { "", NULL };
  327. close(STDIN_FILENO);
  328. view(&a);
  329. lt[sellt] = &foo;
  330. while(stack)
  331. unmanage(stack);
  332. if(dc.font.set)
  333. XFreeFontSet(dpy, dc.font.set);
  334. else
  335. XFreeFont(dpy, dc.font.xfont);
  336. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  337. XFreePixmap(dpy, dc.drawable);
  338. XFreeGC(dpy, dc.gc);
  339. XFreeCursor(dpy, cursor[CurNormal]);
  340. XFreeCursor(dpy, cursor[CurResize]);
  341. XFreeCursor(dpy, cursor[CurMove]);
  342. XDestroyWindow(dpy, barwin);
  343. XSync(dpy, False);
  344. XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
  345. }
  346. void
  347. clearurgent(void) {
  348. XWMHints *wmh;
  349. Client *c;
  350. for(c = clients; c; c = c->next)
  351. if(ISVISIBLE(c) && c->isurgent) {
  352. c->isurgent = False;
  353. if (!(wmh = XGetWMHints(dpy, c->win)))
  354. continue;
  355. wmh->flags &= ~XUrgencyHint;
  356. XSetWMHints(dpy, c->win, wmh);
  357. XFree(wmh);
  358. }
  359. }
  360. void
  361. configure(Client *c) {
  362. XConfigureEvent ce;
  363. ce.type = ConfigureNotify;
  364. ce.display = dpy;
  365. ce.event = c->win;
  366. ce.window = c->win;
  367. ce.x = c->x;
  368. ce.y = c->y;
  369. ce.width = c->w;
  370. ce.height = c->h;
  371. ce.border_width = c->bw;
  372. ce.above = None;
  373. ce.override_redirect = False;
  374. XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
  375. }
  376. void
  377. configurenotify(XEvent *e) {
  378. XConfigureEvent *ev = &e->xconfigure;
  379. if(ev->window == root && (ev->width != sw || ev->height != sh)) {
  380. sw = ev->width;
  381. sh = ev->height;
  382. updategeom();
  383. updatebar();
  384. arrange();
  385. }
  386. }
  387. void
  388. configurerequest(XEvent *e) {
  389. Client *c;
  390. XConfigureRequestEvent *ev = &e->xconfigurerequest;
  391. XWindowChanges wc;
  392. if((c = getclient(ev->window))) {
  393. if(ev->value_mask & CWBorderWidth)
  394. c->bw = ev->border_width;
  395. else if(c->isfloating || !lt[sellt]->arrange) {
  396. if(ev->value_mask & CWX)
  397. c->x = sx + ev->x;
  398. if(ev->value_mask & CWY)
  399. c->y = sy + ev->y;
  400. if(ev->value_mask & CWWidth)
  401. c->w = ev->width;
  402. if(ev->value_mask & CWHeight)
  403. c->h = ev->height;
  404. if((c->x - sx + c->w) > sw && c->isfloating)
  405. c->x = sx + (sw / 2 - c->w / 2); /* center in x direction */
  406. if((c->y - sy + c->h) > sh && c->isfloating)
  407. c->y = sy + (sh / 2 - c->h / 2); /* center in y direction */
  408. if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
  409. configure(c);
  410. if(ISVISIBLE(c))
  411. XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
  412. }
  413. else
  414. configure(c);
  415. }
  416. else {
  417. wc.x = ev->x;
  418. wc.y = ev->y;
  419. wc.width = ev->width;
  420. wc.height = ev->height;
  421. wc.border_width = ev->border_width;
  422. wc.sibling = ev->above;
  423. wc.stack_mode = ev->detail;
  424. XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
  425. }
  426. XSync(dpy, False);
  427. }
  428. void
  429. destroynotify(XEvent *e) {
  430. Client *c;
  431. XDestroyWindowEvent *ev = &e->xdestroywindow;
  432. if((c = getclient(ev->window)))
  433. unmanage(c);
  434. }
  435. void
  436. detach(Client *c) {
  437. Client **tc;
  438. for(tc = &clients; *tc && *tc != c; tc = &(*tc)->next);
  439. *tc = c->next;
  440. }
  441. void
  442. detachstack(Client *c) {
  443. Client **tc;
  444. for(tc = &stack; *tc && *tc != c; tc = &(*tc)->snext);
  445. *tc = c->snext;
  446. }
  447. void
  448. die(const char *errstr, ...) {
  449. va_list ap;
  450. va_start(ap, errstr);
  451. vfprintf(stderr, errstr, ap);
  452. va_end(ap);
  453. exit(EXIT_FAILURE);
  454. }
  455. void
  456. drawbar(void) {
  457. int x;
  458. unsigned int i, occ = 0, urg = 0;
  459. unsigned long *col;
  460. Client *c;
  461. for(c = clients; c; c = c->next) {
  462. occ |= c->tags;
  463. if(c->isurgent)
  464. urg |= c->tags;
  465. }
  466. dc.x = 0;
  467. for(i = 0; i < LENGTH(tags); i++) {
  468. dc.w = TEXTW(tags[i]);
  469. col = tagset[seltags] & 1 << i ? dc.sel : dc.norm;
  470. drawtext(tags[i], col, urg & 1 << i);
  471. drawsquare(sel && sel->tags & 1 << i, occ & 1 << i, urg & 1 << i, col);
  472. dc.x += dc.w;
  473. }
  474. if(blw > 0) {
  475. dc.w = blw;
  476. drawtext(lt[sellt]->symbol, dc.norm, False);
  477. x = dc.x + dc.w;
  478. }
  479. else
  480. x = dc.x;
  481. dc.w = TEXTW(stext);
  482. dc.x = ww - dc.w;
  483. if(dc.x < x) {
  484. dc.x = x;
  485. dc.w = ww - x;
  486. }
  487. drawtext(stext, dc.norm, False);
  488. if((dc.w = dc.x - x) > bh) {
  489. dc.x = x;
  490. if(sel) {
  491. drawtext(sel->name, dc.sel, False);
  492. drawsquare(sel->isfixed, sel->isfloating, False, dc.sel);
  493. }
  494. else
  495. drawtext(NULL, dc.norm, False);
  496. }
  497. XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, ww, bh, 0, 0);
  498. XSync(dpy, False);
  499. }
  500. void
  501. drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
  502. int x;
  503. XGCValues gcv;
  504. XRectangle r = { dc.x, dc.y, dc.w, dc.h };
  505. gcv.foreground = col[invert ? ColBG : ColFG];
  506. XChangeGC(dpy, dc.gc, GCForeground, &gcv);
  507. x = (dc.font.ascent + dc.font.descent + 2) / 4;
  508. r.x = dc.x + 1;
  509. r.y = dc.y + 1;
  510. if(filled) {
  511. r.width = r.height = x + 1;
  512. XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
  513. }
  514. else if(empty) {
  515. r.width = r.height = x;
  516. XDrawRectangles(dpy, dc.drawable, dc.gc, &r, 1);
  517. }
  518. }
  519. void
  520. drawtext(const char *text, unsigned long col[ColLast], Bool invert) {
  521. int i, x, y, h, len, olen;
  522. XRectangle r = { dc.x, dc.y, dc.w, dc.h };
  523. char buf[256];
  524. XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]);
  525. XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
  526. if(!text)
  527. return;
  528. olen = strlen(text);
  529. len = MIN(olen, sizeof buf);
  530. memcpy(buf, text, len);
  531. h = dc.font.ascent + dc.font.descent;
  532. y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
  533. x = dc.x + (h / 2);
  534. /* shorten text if necessary */
  535. for(; len && (i = textnw(buf, len)) > dc.w - h; len--);
  536. if(!len)
  537. return;
  538. if(len < olen)
  539. for(i = len; i && i > len - 3; buf[--i] = '.');
  540. XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
  541. if(dc.font.set)
  542. XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
  543. else
  544. XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
  545. }
  546. void
  547. enternotify(XEvent *e) {
  548. Client *c;
  549. XCrossingEvent *ev = &e->xcrossing;
  550. if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
  551. return;
  552. if((c = getclient(ev->window)))
  553. focus(c);
  554. else
  555. focus(NULL);
  556. }
  557. void
  558. expose(XEvent *e) {
  559. XExposeEvent *ev = &e->xexpose;
  560. if(ev->count == 0 && (ev->window == barwin))
  561. drawbar();
  562. }
  563. void
  564. focus(Client *c) {
  565. if(!c || !ISVISIBLE(c))
  566. for(c = stack; c && !ISVISIBLE(c); c = c->snext);
  567. if(sel && sel != c) {
  568. grabbuttons(sel, False);
  569. XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
  570. }
  571. if(c) {
  572. detachstack(c);
  573. attachstack(c);
  574. grabbuttons(c, True);
  575. XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
  576. XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
  577. }
  578. else
  579. XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
  580. sel = c;
  581. drawbar();
  582. }
  583. void
  584. focusin(XEvent *e) { /* there are some broken focus acquiring clients */
  585. XFocusChangeEvent *ev = &e->xfocus;
  586. if(sel && ev->window != sel->win)
  587. XSetInputFocus(dpy, sel->win, RevertToPointerRoot, CurrentTime);
  588. }
  589. void
  590. focusstack(const Arg *arg) {
  591. Client *c = NULL, *i;
  592. if(!sel)
  593. return;
  594. if (arg->i > 0) {
  595. for(c = sel->next; c && !ISVISIBLE(c); c = c->next);
  596. if(!c)
  597. for(c = clients; c && !ISVISIBLE(c); c = c->next);
  598. }
  599. else {
  600. for(i = clients; i != sel; i = i->next)
  601. if(ISVISIBLE(i))
  602. c = i;
  603. if(!c)
  604. for(; i; i = i->next)
  605. if(ISVISIBLE(i))
  606. c = i;
  607. }
  608. if(c) {
  609. focus(c);
  610. restack();
  611. }
  612. }
  613. Client *
  614. getclient(Window w) {
  615. Client *c;
  616. for(c = clients; c && c->win != w; c = c->next);
  617. return c;
  618. }
  619. unsigned long
  620. getcolor(const char *colstr) {
  621. Colormap cmap = DefaultColormap(dpy, screen);
  622. XColor color;
  623. if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
  624. die("error, cannot allocate color '%s'\n", colstr);
  625. return color.pixel;
  626. }
  627. long
  628. getstate(Window w) {
  629. int format, status;
  630. long result = -1;
  631. unsigned char *p = NULL;
  632. unsigned long n, extra;
  633. Atom real;
  634. status = XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
  635. &real, &format, &n, &extra, (unsigned char **)&p);
  636. if(status != Success)
  637. return -1;
  638. if(n != 0)
  639. result = *p;
  640. XFree(p);
  641. return result;
  642. }
  643. Bool
  644. gettextprop(Window w, Atom atom, char *text, unsigned int size) {
  645. char **list = NULL;
  646. int n;
  647. XTextProperty name;
  648. if(!text || size == 0)
  649. return False;
  650. text[0] = '\0';
  651. XGetTextProperty(dpy, w, &name, atom);
  652. if(!name.nitems)
  653. return False;
  654. if(name.encoding == XA_STRING)
  655. strncpy(text, (char *)name.value, size - 1);
  656. else {
  657. if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
  658. && n > 0 && *list) {
  659. strncpy(text, *list, size - 1);
  660. XFreeStringList(list);
  661. }
  662. }
  663. text[size - 1] = '\0';
  664. XFree(name.value);
  665. return True;
  666. }
  667. void
  668. grabbuttons(Client *c, Bool focused) {
  669. unsigned int i, j;
  670. unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
  671. XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
  672. if(focused) {
  673. for(i = 0; i < LENGTH(buttons); i++)
  674. if(buttons[i].click == ClkClientWin)
  675. for(j = 0; j < LENGTH(modifiers); j++)
  676. XGrabButton(dpy, buttons[i].button, buttons[i].mask | modifiers[j], c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
  677. } else
  678. XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
  679. BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
  680. }
  681. void
  682. grabkeys(void) {
  683. unsigned int i, j;
  684. unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
  685. KeyCode code;
  686. XModifierKeymap *modmap;
  687. /* init modifier map */
  688. modmap = XGetModifierMapping(dpy);
  689. for(i = 0; i < 8; i++)
  690. for(j = 0; j < modmap->max_keypermod; j++) {
  691. if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
  692. numlockmask = (1 << i);
  693. }
  694. XFreeModifiermap(modmap);
  695. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  696. for(i = 0; i < LENGTH(keys); i++) {
  697. code = XKeysymToKeycode(dpy, keys[i].keysym);
  698. for(j = 0; j < LENGTH(modifiers); j++)
  699. XGrabKey(dpy, code, keys[i].mod | modifiers[j], root, True,
  700. GrabModeAsync, GrabModeAsync);
  701. }
  702. }
  703. void
  704. initfont(const char *fontstr) {
  705. char *def, **missing;
  706. int i, n;
  707. missing = NULL;
  708. if(dc.font.set)
  709. XFreeFontSet(dpy, dc.font.set);
  710. dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
  711. if(missing) {
  712. while(n--)
  713. fprintf(stderr, "dwm: missing fontset: %s\n", missing[n]);
  714. XFreeStringList(missing);
  715. }
  716. if(dc.font.set) {
  717. XFontSetExtents *font_extents;
  718. XFontStruct **xfonts;
  719. char **font_names;
  720. dc.font.ascent = dc.font.descent = 0;
  721. font_extents = XExtentsOfFontSet(dc.font.set);
  722. n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
  723. for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
  724. dc.font.ascent = MAX(dc.font.ascent, (*xfonts)->ascent);
  725. dc.font.descent = MAX(dc.font.descent,(*xfonts)->descent);
  726. xfonts++;
  727. }
  728. }
  729. else {
  730. if(dc.font.xfont)
  731. XFreeFont(dpy, dc.font.xfont);
  732. dc.font.xfont = NULL;
  733. if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
  734. && !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
  735. die("error, cannot load font: '%s'\n", fontstr);
  736. dc.font.ascent = dc.font.xfont->ascent;
  737. dc.font.descent = dc.font.xfont->descent;
  738. }
  739. dc.font.height = dc.font.ascent + dc.font.descent;
  740. }
  741. Bool
  742. isprotodel(Client *c) {
  743. int i, n;
  744. Atom *protocols;
  745. Bool ret = False;
  746. if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
  747. for(i = 0; !ret && i < n; i++)
  748. if(protocols[i] == wmatom[WMDelete])
  749. ret = True;
  750. XFree(protocols);
  751. }
  752. return ret;
  753. }
  754. void
  755. keypress(XEvent *e) {
  756. unsigned int i;
  757. KeySym keysym;
  758. XKeyEvent *ev;
  759. ev = &e->xkey;
  760. keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
  761. for(i = 0; i < LENGTH(keys); i++)
  762. if(keysym == keys[i].keysym
  763. && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
  764. && keys[i].func)
  765. keys[i].func(&(keys[i].arg));
  766. }
  767. void
  768. killclient(const Arg *arg) {
  769. XEvent ev;
  770. if(!sel)
  771. return;
  772. if(isprotodel(sel)) {
  773. ev.type = ClientMessage;
  774. ev.xclient.window = sel->win;
  775. ev.xclient.message_type = wmatom[WMProtocols];
  776. ev.xclient.format = 32;
  777. ev.xclient.data.l[0] = wmatom[WMDelete];
  778. ev.xclient.data.l[1] = CurrentTime;
  779. XSendEvent(dpy, sel->win, False, NoEventMask, &ev);
  780. }
  781. else
  782. XKillClient(dpy, sel->win);
  783. }
  784. void
  785. manage(Window w, XWindowAttributes *wa) {
  786. Client *c, *t = NULL;
  787. Status rettrans;
  788. Window trans;
  789. XWindowChanges wc;
  790. if(!(c = calloc(1, sizeof(Client))))
  791. die("fatal: could not calloc() %u bytes\n", sizeof(Client));
  792. c->win = w;
  793. /* geometry */
  794. c->x = wa->x;
  795. c->y = wa->y;
  796. c->w = wa->width;
  797. c->h = wa->height;
  798. c->oldbw = wa->border_width;
  799. if(c->w == sw && c->h == sh) {
  800. c->x = sx;
  801. c->y = sy;
  802. c->bw = 0;
  803. }
  804. else {
  805. if(c->x + c->w + 2 * c->bw > sx + sw)
  806. c->x = sx + sw - c->w - 2 * c->bw;
  807. if(c->y + c->h + 2 * c->bw > sy + sh)
  808. c->y = sy + sh - c->h - 2 * c->bw;
  809. c->x = MAX(c->x, sx);
  810. /* only fix client y-offset, if the client center might cover the bar */
  811. c->y = MAX(c->y, ((by == 0) && (c->x + (c->w / 2) >= wx) && (c->x + (c->w / 2) < wx + ww)) ? bh : sy);
  812. c->bw = borderpx;
  813. }
  814. wc.border_width = c->bw;
  815. XConfigureWindow(dpy, w, CWBorderWidth, &wc);
  816. XSetWindowBorder(dpy, w, dc.norm[ColBorder]);
  817. configure(c); /* propagates border_width, if size doesn't change */
  818. updatesizehints(c);
  819. XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
  820. grabbuttons(c, False);
  821. updatetitle(c);
  822. if((rettrans = XGetTransientForHint(dpy, w, &trans) == Success))
  823. for(t = clients; t && t->win != trans; t = t->next);
  824. if(t)
  825. c->tags = t->tags;
  826. else
  827. applyrules(c);
  828. if(!c->isfloating)
  829. c->isfloating = (rettrans == Success) || c->isfixed;
  830. if(c->isfloating)
  831. XRaiseWindow(dpy, c->win);
  832. attach(c);
  833. attachstack(c);
  834. XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
  835. XMapWindow(dpy, c->win);
  836. setclientstate(c, NormalState);
  837. arrange();
  838. }
  839. void
  840. mappingnotify(XEvent *e) {
  841. XMappingEvent *ev = &e->xmapping;
  842. XRefreshKeyboardMapping(ev);
  843. if(ev->request == MappingKeyboard)
  844. grabkeys();
  845. }
  846. void
  847. maprequest(XEvent *e) {
  848. static XWindowAttributes wa;
  849. XMapRequestEvent *ev = &e->xmaprequest;
  850. if(!XGetWindowAttributes(dpy, ev->window, &wa))
  851. return;
  852. if(wa.override_redirect)
  853. return;
  854. if(!getclient(ev->window))
  855. manage(ev->window, &wa);
  856. }
  857. void
  858. monocle(void) {
  859. Client *c;
  860. for(c = nexttiled(clients); c; c = nexttiled(c->next))
  861. resize(c, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw, resizehints);
  862. }
  863. void
  864. movemouse(const Arg *arg) {
  865. int x, y, ocx, ocy, di, nx, ny;
  866. unsigned int dui;
  867. Client *c;
  868. Window dummy;
  869. XEvent ev;
  870. if(!(c = sel))
  871. return;
  872. restack();
  873. ocx = nx = c->x;
  874. ocy = ny = c->y;
  875. if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
  876. None, cursor[CurMove], CurrentTime) != GrabSuccess)
  877. return;
  878. XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui);
  879. for(;;) {
  880. XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
  881. switch (ev.type) {
  882. case ButtonRelease:
  883. XUngrabPointer(dpy, CurrentTime);
  884. return;
  885. case ConfigureRequest:
  886. case Expose:
  887. case MapRequest:
  888. handler[ev.type](&ev);
  889. break;
  890. case MotionNotify:
  891. XSync(dpy, False);
  892. nx = ocx + (ev.xmotion.x - x);
  893. ny = ocy + (ev.xmotion.y - y);
  894. if(snap && nx >= wx && nx <= wx + ww
  895. && ny >= wy && ny <= wy + wh) {
  896. if(abs(wx - nx) < snap)
  897. nx = wx;
  898. else if(abs((wx + ww) - (nx + c->w + 2 * c->bw)) < snap)
  899. nx = wx + ww - c->w - 2 * c->bw;
  900. if(abs(wy - ny) < snap)
  901. ny = wy;
  902. else if(abs((wy + wh) - (ny + c->h + 2 * c->bw)) < snap)
  903. ny = wy + wh - c->h - 2 * c->bw;
  904. if(!c->isfloating && lt[sellt]->arrange && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
  905. togglefloating(NULL);
  906. }
  907. if(!lt[sellt]->arrange || c->isfloating)
  908. resize(c, nx, ny, c->w, c->h, False);
  909. break;
  910. }
  911. }
  912. }
  913. Client *
  914. nexttiled(Client *c) {
  915. for(; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
  916. return c;
  917. }
  918. void
  919. propertynotify(XEvent *e) {
  920. Client *c;
  921. Window trans;
  922. XPropertyEvent *ev = &e->xproperty;
  923. if(ev->state == PropertyDelete)
  924. return; /* ignore */
  925. if((c = getclient(ev->window))) {
  926. switch (ev->atom) {
  927. default: break;
  928. case XA_WM_TRANSIENT_FOR:
  929. XGetTransientForHint(dpy, c->win, &trans);
  930. if(!c->isfloating && (c->isfloating = (getclient(trans) != NULL)))
  931. arrange();
  932. break;
  933. case XA_WM_NORMAL_HINTS:
  934. updatesizehints(c);
  935. break;
  936. case XA_WM_HINTS:
  937. updatewmhints(c);
  938. drawbar();
  939. break;
  940. }
  941. if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
  942. updatetitle(c);
  943. if(c == sel)
  944. drawbar();
  945. }
  946. }
  947. }
  948. void
  949. quit(const Arg *arg) {
  950. readin = running = False;
  951. }
  952. void
  953. resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
  954. XWindowChanges wc;
  955. if(sizehints) {
  956. /* set minimum possible */
  957. w = MAX(1, w);
  958. h = MAX(1, h);
  959. /* temporarily remove base dimensions */
  960. w -= c->basew;
  961. h -= c->baseh;
  962. /* adjust for aspect limits */
  963. if(c->mina > 0 && c->maxa > 0) {
  964. if(c->maxa < (float) w/h)
  965. w = h * c->maxa;
  966. else if(c->mina > (float) h/w)
  967. h = w * c->mina;
  968. }
  969. /* adjust for increment value */
  970. if(c->incw)
  971. w -= w % c->incw;
  972. if(c->inch)
  973. h -= h % c->inch;
  974. /* restore base dimensions */
  975. w += c->basew;
  976. h += c->baseh;
  977. w = MAX(w, c->minw);
  978. h = MAX(h, c->minh);
  979. if(c->maxw)
  980. w = MIN(w, c->maxw);
  981. if(c->maxh)
  982. h = MIN(h, c->maxh);
  983. }
  984. if(w <= 0 || h <= 0)
  985. return;
  986. if(x > sx + sw)
  987. x = sw - w - 2 * c->bw;
  988. if(y > sy + sh)
  989. y = sh - h - 2 * c->bw;
  990. if(x + w + 2 * c->bw < sx)
  991. x = sx;
  992. if(y + h + 2 * c->bw < sy)
  993. y = sy;
  994. if(h < bh)
  995. h = bh;
  996. if(w < bh)
  997. w = bh;
  998. if(c->x != x || c->y != y || c->w != w || c->h != h) {
  999. c->x = wc.x = x;
  1000. c->y = wc.y = y;
  1001. c->w = wc.width = w;
  1002. c->h = wc.height = h;
  1003. wc.border_width = c->bw;
  1004. XConfigureWindow(dpy, c->win,
  1005. CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
  1006. configure(c);
  1007. XSync(dpy, False);
  1008. }
  1009. }
  1010. void
  1011. resizemouse(const Arg *arg) {
  1012. int ocx, ocy;
  1013. int nw, nh;
  1014. Client *c;
  1015. XEvent ev;
  1016. if(!(c = sel))
  1017. return;
  1018. restack();
  1019. ocx = c->x;
  1020. ocy = c->y;
  1021. if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
  1022. None, cursor[CurResize], CurrentTime) != GrabSuccess)
  1023. return;
  1024. XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
  1025. for(;;) {
  1026. XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask , &ev);
  1027. switch(ev.type) {
  1028. case ButtonRelease:
  1029. XWarpPointer(dpy, None, c->win, 0, 0, 0, 0,
  1030. c->w + c->bw - 1, c->h + c->bw - 1);
  1031. XUngrabPointer(dpy, CurrentTime);
  1032. while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  1033. return;
  1034. case ConfigureRequest:
  1035. case Expose:
  1036. case MapRequest:
  1037. handler[ev.type](&ev);
  1038. break;
  1039. case MotionNotify:
  1040. XSync(dpy, False);
  1041. nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
  1042. nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
  1043. if(snap && nw >= wx && nw <= wx + ww
  1044. && nh >= wy && nh <= wy + wh) {
  1045. if(!c->isfloating && lt[sellt]->arrange
  1046. && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
  1047. togglefloating(NULL);
  1048. }
  1049. if(!lt[sellt]->arrange || c->isfloating)
  1050. resize(c, c->x, c->y, nw, nh, True);
  1051. break;
  1052. }
  1053. }
  1054. }
  1055. void
  1056. restack(void) {
  1057. Client *c;
  1058. XEvent ev;
  1059. XWindowChanges wc;
  1060. drawbar();
  1061. if(!sel)
  1062. return;
  1063. if(sel->isfloating || !lt[sellt]->arrange)
  1064. XRaiseWindow(dpy, sel->win);
  1065. if(lt[sellt]->arrange) {
  1066. wc.stack_mode = Below;
  1067. wc.sibling = barwin;
  1068. for(c = stack; c; c = c->snext)
  1069. if(!c->isfloating && ISVISIBLE(c)) {
  1070. XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
  1071. wc.sibling = c->win;
  1072. }
  1073. }
  1074. XSync(dpy, False);
  1075. while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  1076. }
  1077. void
  1078. run(void) {
  1079. char *p;
  1080. char sbuf[sizeof stext];
  1081. fd_set rd;
  1082. int r, xfd;
  1083. unsigned int len, offset;
  1084. XEvent ev;
  1085. /* main event loop, also reads status text from stdin */
  1086. XSync(dpy, False);
  1087. xfd = ConnectionNumber(dpy);
  1088. offset = 0;
  1089. len = sizeof stext - 1;
  1090. sbuf[len] = stext[len] = '\0'; /* 0-terminator is never touched */
  1091. while(running) {
  1092. FD_ZERO(&rd);
  1093. if(readin)
  1094. FD_SET(STDIN_FILENO, &rd);
  1095. FD_SET(xfd, &rd);
  1096. if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
  1097. if(errno == EINTR)
  1098. continue;
  1099. die("select failed\n");
  1100. }
  1101. if(FD_ISSET(STDIN_FILENO, &rd)) {
  1102. switch((r = read(STDIN_FILENO, sbuf + offset, len - offset))) {
  1103. case -1:
  1104. strncpy(stext, strerror(errno), len);
  1105. readin = False;
  1106. break;
  1107. case 0:
  1108. strncpy(stext, "EOF", 4);
  1109. readin = False;
  1110. break;
  1111. default:
  1112. for(p = sbuf + offset; r > 0; p++, r--, offset++)
  1113. if(*p == '\n' || *p == '\0') {
  1114. *p = '\0';
  1115. strncpy(stext, sbuf, len);
  1116. p += r - 1; /* p is sbuf + offset + r - 1 */
  1117. for(r = 0; *(p - r) && *(p - r) != '\n'; r++);
  1118. offset = r;
  1119. if(r)
  1120. memmove(sbuf, p - r + 1, r);
  1121. break;
  1122. }
  1123. break;
  1124. }
  1125. drawbar();
  1126. }
  1127. while(XPending(dpy)) {
  1128. XNextEvent(dpy, &ev);
  1129. if(handler[ev.type])
  1130. (handler[ev.type])(&ev); /* call handler */
  1131. }
  1132. }
  1133. }
  1134. void
  1135. scan(void) {
  1136. unsigned int i, num;
  1137. Window *wins, d1, d2;
  1138. XWindowAttributes wa;
  1139. wins = NULL;
  1140. if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  1141. for(i = 0; i < num; i++) {
  1142. if(!XGetWindowAttributes(dpy, wins[i], &wa)
  1143. || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  1144. continue;
  1145. if(wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
  1146. manage(wins[i], &wa);
  1147. }
  1148. for(i = 0; i < num; i++) { /* now the transients */
  1149. if(!XGetWindowAttributes(dpy, wins[i], &wa))
  1150. continue;
  1151. if(XGetTransientForHint(dpy, wins[i], &d1)
  1152. && (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
  1153. manage(wins[i], &wa);
  1154. }
  1155. }
  1156. if(wins)
  1157. XFree(wins);
  1158. }
  1159. void
  1160. setclientstate(Client *c, long state) {
  1161. long data[] = {state, None};
  1162. XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
  1163. PropModeReplace, (unsigned char *)data, 2);
  1164. }
  1165. void
  1166. setlayout(const Arg *arg) {
  1167. if(!arg || !arg->v || arg->v != lt[sellt])
  1168. sellt ^= 1;
  1169. if(arg && arg->v)
  1170. lt[sellt] = (Layout *)arg->v;
  1171. if(sel)
  1172. arrange();
  1173. else
  1174. drawbar();
  1175. }
  1176. /* arg > 1.0 will set mfact absolutly */
  1177. void
  1178. setmfact(const Arg *arg) {
  1179. float f;
  1180. if(!arg || !lt[sellt]->arrange)
  1181. return;
  1182. f = arg->f < 1.0 ? arg->f + mfact : arg->f - 1.0;
  1183. if(f < 0.1 || f > 0.9)
  1184. return;
  1185. mfact = f;
  1186. arrange();
  1187. }
  1188. void
  1189. setup(void) {
  1190. unsigned int i;
  1191. int w;
  1192. XSetWindowAttributes wa;
  1193. /* init screen */
  1194. screen = DefaultScreen(dpy);
  1195. root = RootWindow(dpy, screen);
  1196. initfont(font);
  1197. sx = 0;
  1198. sy = 0;
  1199. sw = DisplayWidth(dpy, screen);
  1200. sh = DisplayHeight(dpy, screen);
  1201. bh = dc.h = dc.font.height + 2;
  1202. lt[0] = &layouts[0];
  1203. lt[1] = &layouts[1 % LENGTH(layouts)];
  1204. updategeom();
  1205. /* init atoms */
  1206. wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  1207. wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  1208. wmatom[WMName] = XInternAtom(dpy, "WM_NAME", False);
  1209. wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
  1210. netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  1211. netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  1212. /* init cursors */
  1213. wa.cursor = cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
  1214. cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
  1215. cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
  1216. /* init appearance */
  1217. dc.norm[ColBorder] = getcolor(normbordercolor);
  1218. dc.norm[ColBG] = getcolor(normbgcolor);
  1219. dc.norm[ColFG] = getcolor(normfgcolor);
  1220. dc.sel[ColBorder] = getcolor(selbordercolor);
  1221. dc.sel[ColBG] = getcolor(selbgcolor);
  1222. dc.sel[ColFG] = getcolor(selfgcolor);
  1223. dc.drawable = XCreatePixmap(dpy, root, DisplayWidth(dpy, screen), bh, DefaultDepth(dpy, screen));
  1224. dc.gc = XCreateGC(dpy, root, 0, 0);
  1225. XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
  1226. if(!dc.font.set)
  1227. XSetFont(dpy, dc.gc, dc.font.xfont->fid);
  1228. /* init bar */
  1229. for(blw = i = 0; LENGTH(layouts) > 1 && i < LENGTH(layouts); i++) {
  1230. w = TEXTW(layouts[i].symbol);
  1231. blw = MAX(blw, w);
  1232. }
  1233. wa.override_redirect = 1;
  1234. wa.background_pixmap = ParentRelative;
  1235. wa.event_mask = ButtonPressMask|ExposureMask;
  1236. barwin = XCreateWindow(dpy, root, wx, by, ww, bh, 0, DefaultDepth(dpy, screen),
  1237. CopyFromParent, DefaultVisual(dpy, screen),
  1238. CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
  1239. XDefineCursor(dpy, barwin, cursor[CurNormal]);
  1240. XMapRaised(dpy, barwin);
  1241. strcpy(stext, "dwm-"VERSION);
  1242. drawbar();
  1243. /* EWMH support per view */
  1244. XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
  1245. PropModeReplace, (unsigned char *) netatom, NetLast);
  1246. /* select for events */
  1247. wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|ButtonPressMask
  1248. |EnterWindowMask|LeaveWindowMask|StructureNotifyMask;
  1249. XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
  1250. XSelectInput(dpy, root, wa.event_mask);
  1251. /* grab keys */
  1252. grabkeys();
  1253. }
  1254. void
  1255. spawn(const Arg *arg) {
  1256. /* The double-fork construct avoids zombie processes and keeps the code
  1257. * clean from stupid signal handlers. */
  1258. if(fork() == 0) {
  1259. if(fork() == 0) {
  1260. if(dpy)
  1261. close(ConnectionNumber(dpy));
  1262. setsid();
  1263. execvp(((char **)arg->v)[0], (char **)arg->v);
  1264. fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
  1265. perror(" failed");
  1266. }
  1267. exit(0);
  1268. }
  1269. wait(0);
  1270. }
  1271. void
  1272. tag(const Arg *arg) {
  1273. if(sel && arg->ui & TAGMASK) {
  1274. sel->tags = arg->ui & TAGMASK;
  1275. arrange();
  1276. }
  1277. }
  1278. int
  1279. textnw(const char *text, unsigned int len) {
  1280. XRectangle r;
  1281. if(dc.font.set) {
  1282. XmbTextExtents(dc.font.set, text, len, NULL, &r);
  1283. return r.width;
  1284. }
  1285. return XTextWidth(dc.font.xfont, text, len);
  1286. }
  1287. void
  1288. tile(void) {
  1289. int x, y, h, w, mw;
  1290. unsigned int i, n;
  1291. Client *c;
  1292. for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), n++);
  1293. if(n == 0)
  1294. return;
  1295. /* master */
  1296. c = nexttiled(clients);
  1297. mw = mfact * ww;
  1298. resize(c, wx, wy, (n == 1 ? ww : mw) - 2 * c->bw, wh - 2 * c->bw, resizehints);
  1299. if(--n == 0)
  1300. return;
  1301. /* tile stack */
  1302. x = (wx + mw > c->x + c->w) ? c->x + c->w + 2 * c->bw : wx + mw;
  1303. y = wy;
  1304. w = (wx + mw > c->x + c->w) ? wx + ww - x : ww - mw;
  1305. h = wh / n;
  1306. if(h < bh)
  1307. h = wh;
  1308. for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
  1309. resize(c, x, y, w - 2 * c->bw, /* remainder */ ((i + 1 == n)
  1310. ? (wy + wh) - y : h) - 2 * c->bw, resizehints);
  1311. if(h != wh)
  1312. y = c->y + c->h + 2 * c->bw;
  1313. }
  1314. }
  1315. void
  1316. togglebar(const Arg *arg) {
  1317. showbar = !showbar;
  1318. updategeom();
  1319. updatebar();
  1320. arrange();
  1321. }
  1322. void
  1323. togglefloating(const Arg *arg) {
  1324. if(!sel)
  1325. return;
  1326. sel->isfloating = !sel->isfloating || sel->isfixed;
  1327. if(sel->isfloating)
  1328. resize(sel, sel->x, sel->y, sel->w, sel->h, True);
  1329. arrange();
  1330. }
  1331. void
  1332. toggletag(const Arg *arg) {
  1333. unsigned int mask = sel->tags ^ (arg->ui & TAGMASK);
  1334. if(sel && mask) {
  1335. sel->tags = mask;
  1336. arrange();
  1337. }
  1338. }
  1339. void
  1340. toggleview(const Arg *arg) {
  1341. unsigned int mask = tagset[seltags] ^ (arg->ui & TAGMASK);
  1342. if(mask) {
  1343. tagset[seltags] = mask;
  1344. clearurgent();
  1345. arrange();
  1346. }
  1347. }
  1348. void
  1349. unmanage(Client *c) {
  1350. XWindowChanges wc;
  1351. wc.border_width = c->oldbw;
  1352. /* The server grab construct avoids race conditions. */
  1353. XGrabServer(dpy);
  1354. XSetErrorHandler(xerrordummy);
  1355. XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
  1356. detach(c);
  1357. detachstack(c);
  1358. if(sel == c)
  1359. focus(NULL);
  1360. XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
  1361. setclientstate(c, WithdrawnState);
  1362. free(c);
  1363. XSync(dpy, False);
  1364. XSetErrorHandler(xerror);
  1365. XUngrabServer(dpy);
  1366. arrange();
  1367. }
  1368. void
  1369. unmapnotify(XEvent *e) {
  1370. Client *c;
  1371. XUnmapEvent *ev = &e->xunmap;
  1372. if((c = getclient(ev->window)))
  1373. unmanage(c);
  1374. }
  1375. void
  1376. updatebar(void) {
  1377. if(dc.drawable != 0)
  1378. XFreePixmap(dpy, dc.drawable);
  1379. dc.drawable = XCreatePixmap(dpy, root, ww, bh, DefaultDepth(dpy, screen));
  1380. XMoveResizeWindow(dpy, barwin, wx, by, ww, bh);
  1381. }
  1382. void
  1383. updategeom(void) {
  1384. #ifdef XINERAMA
  1385. int n, i = 0;
  1386. XineramaScreenInfo *info = NULL;
  1387. /* window area geometry */
  1388. if(XineramaIsActive(dpy) && (info = XineramaQueryScreens(dpy, &n))) {
  1389. if(n > 1) {
  1390. int di, x, y;
  1391. unsigned int dui;
  1392. Window dummy;
  1393. if(XQueryPointer(dpy, root, &dummy, &dummy, &x, &y, &di, &di, &dui))
  1394. for(i = 0; i < n; i++)
  1395. if(INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height))
  1396. break;
  1397. }
  1398. wx = info[i].x_org;
  1399. wy = showbar && topbar ? info[i].y_org + bh : info[i].y_org;
  1400. ww = info[i].width;
  1401. wh = showbar ? info[i].height - bh : info[i].height;
  1402. XFree(info);
  1403. }
  1404. else
  1405. #endif
  1406. {
  1407. wx = sx;
  1408. wy = showbar && topbar ? sy + bh : sy;
  1409. ww = sw;
  1410. wh = showbar ? sh - bh : sh;
  1411. }
  1412. /* bar position */
  1413. by = showbar ? (topbar ? wy - bh : wy + wh) : -bh;
  1414. }
  1415. void
  1416. updatesizehints(Client *c) {
  1417. long msize;
  1418. XSizeHints size;
  1419. XGetWMNormalHints(dpy, c->win, &size, &msize);
  1420. if(size.flags & PBaseSize) {
  1421. c->basew = size.base_width;
  1422. c->baseh = size.base_height;
  1423. }
  1424. else if(size.flags & PMinSize) {
  1425. c->basew = size.min_width;
  1426. c->baseh = size.min_height;
  1427. }
  1428. else
  1429. c->basew = c->baseh = 0;
  1430. if(size.flags & PResizeInc) {
  1431. c->incw = size.width_inc;
  1432. c->inch = size.height_inc;
  1433. }
  1434. else
  1435. c->incw = c->inch = 0;
  1436. if(size.flags & PMaxSize) {
  1437. c->maxw = size.max_width;
  1438. c->maxh = size.max_height;
  1439. }
  1440. else
  1441. c->maxw = c->maxh = 0;
  1442. if(size.flags & PMinSize) {
  1443. c->minw = size.min_width;
  1444. c->minh = size.min_height;
  1445. }
  1446. else if(size.flags & PBaseSize) {
  1447. c->minw = size.base_width;
  1448. c->minh = size.base_height;
  1449. }
  1450. else
  1451. c->minw = c->minh = 0;
  1452. if(size.flags & PAspect) {
  1453. c->mina = (float)size.min_aspect.y / (float)size.min_aspect.x;
  1454. c->maxa = (float)size.max_aspect.x / (float)size.max_aspect.y;
  1455. }
  1456. else
  1457. c->maxa = c->mina = 0.0;
  1458. c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
  1459. && c->maxw == c->minw && c->maxh == c->minh);
  1460. }
  1461. void
  1462. updatetitle(Client *c) {
  1463. if(!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
  1464. gettextprop(c->win, wmatom[WMName], c->name, sizeof c->name);
  1465. }
  1466. void
  1467. updatewmhints(Client *c) {
  1468. XWMHints *wmh;
  1469. if((wmh = XGetWMHints(dpy, c->win))) {
  1470. if(ISVISIBLE(c) && wmh->flags & XUrgencyHint) {
  1471. wmh->flags &= ~XUrgencyHint;
  1472. XSetWMHints(dpy, c->win, wmh);
  1473. }
  1474. else
  1475. c->isurgent = (wmh->flags & XUrgencyHint) ? True : False;
  1476. XFree(wmh);
  1477. }
  1478. }
  1479. void
  1480. view(const Arg *arg) {
  1481. if(arg && (arg->i & TAGMASK) == tagset[seltags])
  1482. return;
  1483. seltags ^= 1; /* toggle sel tagset */
  1484. if(arg && (arg->ui & TAGMASK))
  1485. tagset[seltags] = arg->i & TAGMASK;
  1486. clearurgent();
  1487. arrange();
  1488. }
  1489. /* There's no way to check accesses to destroyed windows, thus those cases are
  1490. * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
  1491. * default error handler, which may call exit. */
  1492. int
  1493. xerror(Display *dpy, XErrorEvent *ee) {
  1494. if(ee->error_code == BadWindow
  1495. || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
  1496. || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
  1497. || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
  1498. || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
  1499. || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
  1500. || (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
  1501. || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
  1502. || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
  1503. return 0;
  1504. fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
  1505. ee->request_code, ee->error_code);
  1506. return xerrorxlib(dpy, ee); /* may call exit */
  1507. }
  1508. int
  1509. xerrordummy(Display *dpy, XErrorEvent *ee) {
  1510. return 0;
  1511. }
  1512. /* Startup Error handler to check if another window manager
  1513. * is already running. */
  1514. int
  1515. xerrorstart(Display *dpy, XErrorEvent *ee) {
  1516. otherwm = True;
  1517. return -1;
  1518. }
  1519. void
  1520. zoom(const Arg *arg) {
  1521. Client *c = sel;
  1522. if(!lt[sellt]->arrange || lt[sellt]->arrange == monocle || (sel && sel->isfloating))
  1523. return;
  1524. if(c == nexttiled(clients))
  1525. if(!c || !(c = nexttiled(c->next)))
  1526. return;
  1527. detach(c);
  1528. attach(c);
  1529. focus(c);
  1530. arrange();
  1531. }
  1532. int
  1533. main(int argc, char *argv[]) {
  1534. if(argc == 2 && !strcmp("-v", argv[1]))
  1535. die("dwm-"VERSION", © 2006-2008 dwm engineers, see LICENSE for details\n");
  1536. else if(argc != 1)
  1537. die("usage: dwm [-v]\n");
  1538. if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
  1539. fprintf(stderr, "warning: no locale support\n");
  1540. if(!(dpy = XOpenDisplay(0)))
  1541. die("dwm: cannot open display\n");
  1542. checkotherwm();
  1543. setup();
  1544. scan();
  1545. run();
  1546. cleanup();
  1547. XCloseDisplay(dpy);
  1548. return 0;
  1549. }