mirror of
https://github.com/alrayyes/dwm-patches
synced 2023-11-14 15:56:31 +00:00
Works with latest public version of dwm
Changed two lines for dwm.c to match dwm.c so git apply can find and patch
This commit is contained in:
parent
3f2f193400
commit
71ad4411ea
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user