dwm.c 41 KB

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