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.

94 lines
3.6 KiB

  1. diff -up a/config.def.h b/config.def.h
  2. --- a/config.def.h
  3. +++ b/config.def.h
  4. @@ -2,6 +2,7 @@
  5. /* appearance */
  6. static const unsigned int borderpx = 1; /* border pixel of windows */
  7. +static const unsigned int gappx = 5; /* gaps between windows */
  8. static const unsigned int snap = 32; /* snap pixel */
  9. static const int showbar = 1; /* 0 means no bar */
  10. static const int topbar = 1; /* 0 means bottom bar */
  11. @@ -85,6 +86,9 @@ static const Key keys[] = {
  12. { MODKEY, XK_period, focusmon, {.i = +1 } },
  13. { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
  14. { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
  15. + { MODKEY, XK_minus, setgaps, {.i = -1 } },
  16. + { MODKEY, XK_equal, setgaps, {.i = +1 } },
  17. + { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } },
  18. TAGKEYS( XK_1, 0)
  19. TAGKEYS( XK_2, 1)
  20. TAGKEYS( XK_3, 2)
  21. diff -up a/dwm.c b/dwm.c
  22. --- a/dwm.c 2023-04-30
  23. +++ b/dwm.c 2023-04-30
  24. @@ -119,6 +119,7 @@ struct Monitor {
  25. int by; /* bar geometry */
  26. int mx, my, mw, mh; /* screen size */
  27. int wx, wy, ww, wh; /* window area */
  28. + int gappx; /* gaps between windows */
  29. unsigned int seltags;
  30. unsigned int sellt;
  31. unsigned int tagset[2];
  32. @@ -200,6 +201,7 @@ static void sendmon(Client *c, Monitor *
  33. static void setclientstate(Client *c, long state);
  34. static void setfocus(Client *c);
  35. static void setfullscreen(Client *c, int fullscreen);
  36. +static void setgaps(const Arg *arg);
  37. static void setlayout(const Arg *arg);
  38. static void setmfact(const Arg *arg);
  39. static void setup(void);
  40. @@ -641,6 +643,7 @@ createmon(void)
  41. m->nmaster = nmaster;
  42. m->showbar = showbar;
  43. m->topbar = topbar;
  44. + m->gappx = gappx;
  45. m->lt[0] = &layouts[0];
  46. m->lt[1] = &layouts[1 % LENGTH(layouts)];
  47. strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
  48. @@ -1508,6 +1511,16 @@ setfullscreen(Client *c, int fullscreen)
  49. }
  50. void
  51. +setgaps(const Arg *arg)
  52. +{
  53. + if ((arg->i == 0) || (selmon->gappx + arg->i < 0))
  54. + selmon->gappx = 0;
  55. + else
  56. + selmon->gappx += arg->i;
  57. + arrange(selmon);
  58. +}
  59. +
  60. +void
  61. setlayout(const Arg *arg)
  62. {
  63. if (!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
  64. @@ -1697,18 +1710,18 @@ tile(Monitor *m)
  65. if (n > m->nmaster)
  66. mw = m->nmaster ? m->ww * m->mfact : 0;
  67. else
  68. - mw = m->ww;
  69. - for (i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
  70. - if (i < m->nmaster) {
  71. - h = (m->wh - my) / (MIN(n, m->nmaster) - i);
  72. - resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), 0);
  73. - if (my + HEIGHT(c) < m->wh)
  74. - my += HEIGHT(c);
  75. + mw = m->ww - m->gappx;
  76. + for (i = 0, my = ty = m->gappx, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
  77. + if (i < m->nmaster) {
  78. + h = (m->wh - my) / (MIN(n, m->nmaster) - i) - m->gappx;
  79. + resize(c, m->wx + m->gappx, m->wy + my, mw - (2*c->bw) - m->gappx, h - (2*c->bw), 0);
  80. + if (my + HEIGHT(c) + m->gappx < m->wh)
  81. + my += HEIGHT(c) + m->gappx;
  82. } else {
  83. - h = (m->wh - ty) / (n - i);
  84. - resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->bw), h - (2*c->bw), 0);
  85. - if (ty + HEIGHT(c) < m->wh)
  86. - ty += HEIGHT(c);
  87. + h = (m->wh - ty) / (n - i) - m->gappx;
  88. + resize(c, m->wx + mw + m->gappx, m->wy + ty, m->ww - mw - (2*c->bw) - 2*m->gappx, h - (2*c->bw), 0);
  89. + if (ty + HEIGHT(c) + m->gappx < m->wh)
  90. + ty += HEIGHT(c) + m->gappx;
  91. }
  92. }