all repos — dwm @ a823f6b57372e9d216fb59b0f627363143f3a614

my dwm build

Merge branch 'master' into mybuild
Prithu Goswami prithugoswami524@gmail.com
Sun, 02 May 2021 17:26:49 +0530
commit

a823f6b57372e9d216fb59b0f627363143f3a614

parent

32531991f68df36e108649619ac3ea0ed0709bc5

3 files changed, 4 insertions(+), 3 deletions(-)

jump to
M drw.cdrw.c

@@ -95,6 +95,7 @@ drw_free(Drw *drw)

{ XFreePixmap(drw->dpy, drw->drawable); XFreeGC(drw->dpy, drw->gc); + drw_fontset_free(drw->fonts); free(drw); }
M dwm.1dwm.1

@@ -41,7 +41,7 @@ dwm draws a small border around windows to indicate the focus state.

.SH OPTIONS .TP .B \-v -prints version information to standard output, then exits. +prints version information to stderr, then exits. .SH USAGE .SS Status bar .TP
M dwm.cdwm.c

@@ -454,7 +454,7 @@ click = ClkTagBar;

arg.ui = 1 << i; } else if (ev->x < x + blw) click = ClkLtSymbol; - else if (ev->x > selmon->ww - TEXTW(stext)) + else if (ev->x > selmon->ww - (int)TEXTW(stext)) click = ClkStatusText; else click = ClkWinTitle;

@@ -974,7 +974,7 @@ focusstack(const Arg *arg)

{ Client *c = NULL, *i; - if (!selmon->sel) + if (!selmon->sel || selmon->sel->isfullscreen) return; if (arg->i > 0) { for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);