1
0
mirror of https://github.com/alrayyes/dwm-patches synced 2023-11-14 15:56:31 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
1dd0ab76ab
Merge pull request #1 from birdalicious/master
Works with latest public version of dwm
2021-07-16 13:35:20 +02:00
birdalicous
71ad4411ea Works with latest public version of dwm
Changed two lines for dwm.c to match dwm.c so git apply can find and
patch
2021-07-15 02:09:11 +01:00

View File

@ -39,7 +39,7 @@ index 4465af1..bcf5cb1 100644
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;
@ -50,7 +50,7 @@ index 4465af1..bcf5cb1 100644
@@ -729,15 +727,8 @@ drawbar(Monitor *m)
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
if ((w = m->ww - sw - x) > bh) {
if ((w = m->ww - tw - x) > bh) {
- if (m->sel) {
- drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
- drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);