birdwm

birdwm - mrgrouse's daily driver fork of suckless' dwm. Contains many patches and is currently loosely maintained.
Log | Files | Refs | README | LICENSE

commit c11f0f2a3f0be68828ac0061ec67ccd320a29bb8
parent 26889230a0cc225a2f4c5f52dd854e2120d8c835
Author: mrgrouse <mrgrouse@mrgrouse.com>
Date:   Mon,  8 Dec 2025 01:03:00 -0500

birdwm.c: invert colors in status bar

Diffstat:
Mbirdwm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/birdwm.c b/birdwm.c @@ -867,7 +867,7 @@ drawbar(Monitor *m) if (m == selmon) { /* status is only drawn on selected monitor */ drw_setscheme(drw, scheme[SchemeNorm]); tw = TEXTW(stext) - lrpad / 2 + 2; /* 2px right padding */ - drw_text(drw, m->ww - tw - stw - 2 * sp, 0, sw, bh, lrpad / 2 - 2, stext, 0); + drw_text(drw, m->ww - tw - stw - 2 * sp, 0, sw, bh, lrpad / 2 - 2, stext, 1); } resizebarwin(m);