Applied border patch
Patch-Source: https://tools.suckless.org/dmenu/patches/border/dmenu-border-20230512-0fe460d.diff
This commit is contained in:
parent
d893c63cdd
commit
4e2d3ffd8d
2 changed files with 8 additions and 1 deletions
|
|
@ -21,3 +21,6 @@ static unsigned int lines = 0;
|
|||
* for example: " /?\"&[]"
|
||||
*/
|
||||
static const char worddelimiters[] = " ";
|
||||
|
||||
/* Size of the window border */
|
||||
static unsigned int border_width = 0;
|
||||
|
|
|
|||
6
dmenu.c
6
dmenu.c
|
|
@ -684,9 +684,11 @@ setup(void)
|
|||
swa.override_redirect = True;
|
||||
swa.background_pixel = scheme[SchemeNorm][ColBg].pixel;
|
||||
swa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
|
||||
win = XCreateWindow(dpy, root, x, y, mw, mh, 0,
|
||||
win = XCreateWindow(dpy, root, x, y, mw, mh, border_width,
|
||||
CopyFromParent, CopyFromParent, CopyFromParent,
|
||||
CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
|
||||
if (border_width)
|
||||
XSetWindowBorder(dpy, win, scheme[SchemeSel][ColBg].pixel);
|
||||
XSetClassHint(dpy, win, &ch);
|
||||
|
||||
/* input methods */
|
||||
|
|
@ -757,6 +759,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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue