X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/47765f728614c348aa7dfc2eed6f754efc376922..b975c4728046052a32626378df193217a96fbefc:/screen.c diff --git a/screen.c b/screen.c index 03387eb..022633b 100644 --- a/screen.c +++ b/screen.c @@ -369,6 +369,32 @@ toggleview(const char *arg) { arrange(); } +void +updatebarpos(void) { + XEvent ev; + + wax = sx; + way = sy; + wah = sh; + waw = sw; + switch(bpos) { + default: + wah -= bh; + way += bh; + XMoveWindow(dpy, barwin, sx, sy); + break; + case BarBot: + wah -= bh; + XMoveWindow(dpy, barwin, sx, sy + wah); + break; + case BarOff: + XMoveWindow(dpy, barwin, sx, sy - bh); + break; + } + XSync(dpy, False); + while(XCheckMaskEvent(dpy, EnterWindowMask, &ev)); +} + void view(const char *arg) { unsigned int i;