summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsxv478 <vt0451@yandex.ru>2022-09-21 02:21:53 +0300
committertsxv478 <vt0451@yandex.ru>2022-09-21 02:21:53 +0300
commitf8a5d245468cc6e04903fe96e3efcbd85aea13d9 (patch)
tree505a30a1a10f101c5afe22fed732af60693433e6
parent1882d9261b1194c2897448031c73365a89a2484c (diff)
border patch
-rw-r--r--config.def.h3
-rw-r--r--dmenu.c6
2 files changed, 8 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 88ef264..cfff3e4 100644
--- a/config.def.h
+++ b/config.def.h
@@ -23,3 +23,6 @@ static unsigned int lines = 0;
* for example: " /?\"&[]"
*/
static const char worddelimiters[] = " ";
+
+/* Size of the window border */
+static unsigned int border_width = 0;
diff --git a/dmenu.c b/dmenu.c
index 2a9d8cd..fe12f1f 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -703,9 +703,11 @@ setup(void)
swa.override_redirect = True;
swa.background_pixel = scheme[SchemeNorm][ColBg].pixel;
swa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
- win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0,
+ win = XCreateWindow(dpy, parentwin, x, y - (topbar ? 0 : border_width * 2), mw - border_width * 2, mh, border_width,
CopyFromParent, CopyFromParent, CopyFromParent,
CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
+ if (border_width)
+ XSetWindowBorder(dpy, win, scheme[SchemeSel][ColBg].pixel);
XSetClassHint(dpy, win, &ch);
@@ -779,6 +781,8 @@ main(int argc, char *argv[])
colors[SchemeSel][ColFg] = argv[++i];
else if (!strcmp(argv[i], "-w")) /* embedding window id */
embed = argv[++i];
+ else if (!strcmp(argv[i], "-bw"))
+ border_width = atoi(argv[++i]); /* border width */
else
usage();