Configuration file for DWM on MacBook Air
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

425 lines
7.5 KiB

18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include "dwm.h"
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <X11/Xatom.h>
  9. #include <X11/Xutil.h>
  10. /* static functions */
  11. static void
  12. resizetitle(Client *c)
  13. {
  14. int i;
  15. c->tw = 0;
  16. for(i = 0; i < TLast; i++)
  17. if(c->tags[i])
  18. c->tw += textw(c->tags[i]);
  19. c->tw += textw(c->name);
  20. if(c->tw > c->w)
  21. c->tw = c->w + 2;
  22. c->tx = c->x + c->w - c->tw + 2;
  23. c->ty = c->y;
  24. XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th);
  25. }
  26. static int
  27. xerrordummy(Display *dsply, XErrorEvent *ee)
  28. {
  29. return 0;
  30. }
  31. /* extern functions */
  32. void
  33. ban(Client *c)
  34. {
  35. XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
  36. XMoveWindow(dpy, c->title, c->tx + 2 * sw, c->ty);
  37. }
  38. void
  39. focus(Client *c)
  40. {
  41. Client *old = sel;
  42. XEvent ev;
  43. sel = c;
  44. if(old && old != c)
  45. drawtitle(old);
  46. drawtitle(c);
  47. XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
  48. XSync(dpy, False);
  49. while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  50. }
  51. void
  52. focusnext(Arg *arg)
  53. {
  54. Client *c;
  55. if(!sel)
  56. return;
  57. if(!(c = getnext(sel->next)))
  58. c = getnext(clients);
  59. if(c) {
  60. higher(c);
  61. c->revert = sel;
  62. focus(c);
  63. }
  64. }
  65. void
  66. focusprev(Arg *arg)
  67. {
  68. Client *c;
  69. if(!sel)
  70. return;
  71. if((c = sel->revert && sel->revert->tags[tsel] ? sel->revert : NULL)) {
  72. higher(c);
  73. focus(c);
  74. }
  75. }
  76. Client *
  77. getclient(Window w)
  78. {
  79. Client *c;
  80. for(c = clients; c; c = c->next)
  81. if(c->win == w)
  82. return c;
  83. return NULL;
  84. }
  85. Client *
  86. getctitle(Window w)
  87. {
  88. Client *c;
  89. for(c = clients; c; c = c->next)
  90. if(c->title == w)
  91. return c;
  92. return NULL;
  93. }
  94. void
  95. gravitate(Client *c, Bool invert)
  96. {
  97. int dx = 0, dy = 0;
  98. switch(c->grav) {
  99. case StaticGravity:
  100. case NorthWestGravity:
  101. case NorthGravity:
  102. case NorthEastGravity:
  103. dy = c->border;
  104. break;
  105. case EastGravity:
  106. case CenterGravity:
  107. case WestGravity:
  108. dy = -(c->h / 2) + c->border;
  109. break;
  110. case SouthEastGravity:
  111. case SouthGravity:
  112. case SouthWestGravity:
  113. dy = -c->h;
  114. break;
  115. default:
  116. break;
  117. }
  118. switch (c->grav) {
  119. case StaticGravity:
  120. case NorthWestGravity:
  121. case WestGravity:
  122. case SouthWestGravity:
  123. dx = c->border;
  124. break;
  125. case NorthGravity:
  126. case CenterGravity:
  127. case SouthGravity:
  128. dx = -(c->w / 2) + c->border;
  129. break;
  130. case NorthEastGravity:
  131. case EastGravity:
  132. case SouthEastGravity:
  133. dx = -(c->w + c->border);
  134. break;
  135. default:
  136. break;
  137. }
  138. if(invert) {
  139. dx = -dx;
  140. dy = -dy;
  141. }
  142. c->x += dx;
  143. c->y += dy;
  144. }
  145. void
  146. higher(Client *c)
  147. {
  148. XRaiseWindow(dpy, c->win);
  149. XRaiseWindow(dpy, c->title);
  150. }
  151. void
  152. killclient(Arg *arg)
  153. {
  154. if(!sel)
  155. return;
  156. if(sel->proto & WM_PROTOCOL_DELWIN)
  157. sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
  158. else
  159. XKillClient(dpy, sel->win);
  160. }
  161. void
  162. lower(Client *c)
  163. {
  164. XLowerWindow(dpy, c->title);
  165. XLowerWindow(dpy, c->win);
  166. }
  167. void
  168. manage(Window w, XWindowAttributes *wa)
  169. {
  170. Client *c;
  171. XSetWindowAttributes twa;
  172. Window trans;
  173. c = emallocz(sizeof(Client));
  174. c->win = w;
  175. c->tx = c->x = wa->x;
  176. c->ty = c->y = wa->y;
  177. if(c->y < bh)
  178. c->ty = c->y += bh;
  179. c->tw = c->w = wa->width;
  180. c->h = wa->height;
  181. c->th = bh;
  182. c->border = 1;
  183. c->proto = getproto(c->win);
  184. setsize(c);
  185. XSelectInput(dpy, c->win,
  186. StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
  187. XGetTransientForHint(dpy, c->win, &trans);
  188. twa.override_redirect = 1;
  189. twa.background_pixmap = ParentRelative;
  190. twa.event_mask = ExposureMask;
  191. c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th,
  192. 0, DefaultDepth(dpy, screen), CopyFromParent,
  193. DefaultVisual(dpy, screen),
  194. CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa);
  195. settitle(c);
  196. settags(c);
  197. c->next = clients;
  198. clients = c;
  199. XGrabButton(dpy, Button1, ControlMask, c->win, False, ButtonPressMask,
  200. GrabModeAsync, GrabModeSync, None, None);
  201. XGrabButton(dpy, Button1, Mod1Mask, c->win, False, ButtonPressMask,
  202. GrabModeAsync, GrabModeSync, None, None);
  203. XGrabButton(dpy, Button2, Mod1Mask, c->win, False, ButtonPressMask,
  204. GrabModeAsync, GrabModeSync, None, None);
  205. XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
  206. GrabModeAsync, GrabModeSync, None, None);
  207. if(!c->isfloat)
  208. c->isfloat = trans
  209. || ((c->maxw == c->minw) && (c->maxh == c->minh));
  210. arrange(NULL);
  211. /* mapping the window now prevents flicker */
  212. if(c->tags[tsel]) {
  213. XMapRaised(dpy, c->win);
  214. XMapRaised(dpy, c->title);
  215. focus(c);
  216. }
  217. else {
  218. ban(c);
  219. XMapRaised(dpy, c->win);
  220. XMapRaised(dpy, c->title);
  221. XSync(dpy, False);
  222. }
  223. }
  224. void
  225. maximize(Arg *arg)
  226. {
  227. if(!sel)
  228. return;
  229. sel->x = sx;
  230. sel->y = sy + bh;
  231. sel->w = sw - 2 * sel->border;
  232. sel->h = sh - 2 * sel->border - bh;
  233. higher(sel);
  234. resize(sel, False);
  235. }
  236. void
  237. resize(Client *c, Bool inc)
  238. {
  239. XConfigureEvent e;
  240. if(inc) {
  241. if(c->incw)
  242. c->w -= (c->w - c->basew) % c->incw;
  243. if(c->inch)
  244. c->h -= (c->h - c->baseh) % c->inch;
  245. }
  246. if(c->x > sw) /* might happen on restart */
  247. c->x = sw - c->w;
  248. if(c->y > sh)
  249. c->ty = c->y = sh - c->h;
  250. if(c->minw && c->w < c->minw)
  251. c->w = c->minw;
  252. if(c->minh && c->h < c->minh)
  253. c->h = c->minh;
  254. if(c->maxw && c->w > c->maxw)
  255. c->w = c->maxw;
  256. if(c->maxh && c->h > c->maxh)
  257. c->h = c->maxh;
  258. resizetitle(c);
  259. XSetWindowBorderWidth(dpy, c->win, 1);
  260. XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
  261. e.type = ConfigureNotify;
  262. e.event = c->win;
  263. e.window = c->win;
  264. e.x = c->x;
  265. e.y = c->y;
  266. e.width = c->w;
  267. e.height = c->h;
  268. e.border_width = c->border;
  269. e.above = None;
  270. e.override_redirect = False;
  271. XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e);
  272. XSync(dpy, False);
  273. }
  274. void
  275. setsize(Client *c)
  276. {
  277. XSizeHints size;
  278. long msize;
  279. if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
  280. size.flags = PSize;
  281. c->flags = size.flags;
  282. if(c->flags & PBaseSize) {
  283. c->basew = size.base_width;
  284. c->baseh = size.base_height;
  285. }
  286. else
  287. c->basew = c->baseh = 0;
  288. if(c->flags & PResizeInc) {
  289. c->incw = size.width_inc;
  290. c->inch = size.height_inc;
  291. }
  292. else
  293. c->incw = c->inch = 0;
  294. if(c->flags & PMaxSize) {
  295. c->maxw = size.max_width;
  296. c->maxh = size.max_height;
  297. }
  298. else
  299. c->maxw = c->maxh = 0;
  300. if(c->flags & PMinSize) {
  301. c->minw = size.min_width;
  302. c->minh = size.min_height;
  303. }
  304. else
  305. c->minw = c->minh = 0;
  306. if(c->flags & PWinGravity)
  307. c->grav = size.win_gravity;
  308. else
  309. c->grav = NorthWestGravity;
  310. }
  311. void
  312. settitle(Client *c)
  313. {
  314. XTextProperty name;
  315. int n;
  316. char **list = NULL;
  317. name.nitems = 0;
  318. c->name[0] = 0;
  319. XGetTextProperty(dpy, c->win, &name, netatom[NetWMName]);
  320. if(!name.nitems)
  321. XGetWMName(dpy, c->win, &name);
  322. if(!name.nitems)
  323. return;
  324. if(name.encoding == XA_STRING)
  325. strncpy(c->name, (char *)name.value, sizeof(c->name));
  326. else {
  327. if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
  328. && n > 0 && *list)
  329. {
  330. strncpy(c->name, *list, sizeof(c->name));
  331. XFreeStringList(list);
  332. }
  333. }
  334. XFree(name.value);
  335. resizetitle(c);
  336. }
  337. void
  338. unmanage(Client *c)
  339. {
  340. Client **l;
  341. XGrabServer(dpy);
  342. XSetErrorHandler(xerrordummy);
  343. XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
  344. XDestroyWindow(dpy, c->title);
  345. for(l = &clients; *l && *l != c; l = &(*l)->next);
  346. *l = c->next;
  347. for(l = &clients; *l; l = &(*l)->next)
  348. if((*l)->revert == c)
  349. (*l)->revert = NULL;
  350. if(sel == c)
  351. sel = sel->revert ? sel->revert : clients;
  352. free(c);
  353. XSync(dpy, False);
  354. XSetErrorHandler(xerror);
  355. XUngrabServer(dpy);
  356. arrange(NULL);
  357. if(sel)
  358. focus(sel);
  359. }
  360. void
  361. zoom(Arg *arg)
  362. {
  363. Client **l, *c;
  364. if(!sel)
  365. return;
  366. if(sel == getnext(clients) && sel->next) {
  367. if((c = getnext(sel->next)))
  368. sel = c;
  369. }
  370. for(l = &clients; *l && *l != sel; l = &(*l)->next);
  371. *l = sel->next;
  372. sel->next = clients; /* pop */
  373. clients = sel;
  374. arrange(NULL);
  375. focus(sel);
  376. }