Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
raise barwin in restack, that's the most elegant solution I think
[dwm.git]
/
layout.c
diff --git
a/layout.c
b/layout.c
index
04835a8
..
0f17b69
100644
(file)
--- a/
layout.c
+++ b/
layout.c
@@
-189,6
+189,7
@@
restack(void) {
XLowerWindow(dpy, c->win);
}
}
XLowerWindow(dpy, c->win);
}
}
+ XRaiseWindow(dpy, barwin);
XSync(dpy, False);
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}
XSync(dpy, False);
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}
@@
-216,6
+217,16
@@
setlayout(const char *arg) {
drawstatus();
}
drawstatus();
}
+void
+togglebar(const char *arg) {
+ if(bpos == BarOff)
+ bpos = (BARPOS == BarOff) ? BarTop : BARPOS;
+ else
+ bpos = BarOff;
+ updatebarpos();
+ lt->arrange();
+}
+
void
togglemax(const char *arg) {
XEvent ev;
void
togglemax(const char *arg) {
XEvent ev;