dwm

dynamic window manager
git clone https://git.parazyd.org/dwm
Log | Files | Refs | README | LICENSE

commit 598e22907e6a3bcfbc35f913dae24d031d6f9170
parent 1e826ddd3ee0159bf2bd296a24e557b0d971ed91
Author: Anselm R. Garbe <arg@suckless.org>
Date:   Wed, 16 May 2007 21:59:53 +0200

raise barwin in restack, that's the most elegant solution I think
Diffstat:
Mlayout.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/layout.c b/layout.c @@ -189,6 +189,7 @@ restack(void) { XLowerWindow(dpy, c->win); } } + XRaiseWindow(dpy, barwin); XSync(dpy, False); while(XCheckMaskEvent(dpy, EnterWindowMask, &ev)); }