dwm.c 41 KB

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