diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c index 0f22c44..f114bae 100644 --- a/main.c +++ b/main.c @@ -130,7 +130,8 @@ setup(void) { sh = DisplayHeight(dpy, screen); master = MASTER; /* bar */ - bx = by = 0; + bx = sx; + by = sy; bw = sw; dc.h = bh = dc.font.height + 2; wa.override_redirect = 1; @@ -144,7 +145,7 @@ setup(void) { strcpy(stext, "dwm-"VERSION); /* windowarea */ wax = sx; - way = bh; + way = sy + bh; wah = sh - bh; waw = sw; /* pixmap for everything */ |