summaryrefslogtreecommitdiff
path: root/patches/dmenu-borderoption-20200217-bf60a1e.diff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-21 13:38:42 -0600
committerzachir <zachir@librem.one>2023-02-21 13:38:42 -0600
commit3e780ab7e8f5a6358c89813e2d2e430b90fe8a66 (patch)
tree7545c304a2416ad06dada49d0011c742529eaee0 /patches/dmenu-borderoption-20200217-bf60a1e.diff
parentd37bbc0c900aa6e42e9f2dac7500c468083bb69b (diff)
reset to vanilla dmenu-5.2
Diffstat (limited to 'patches/dmenu-borderoption-20200217-bf60a1e.diff')
-rw-r--r--patches/dmenu-borderoption-20200217-bf60a1e.diff46
1 files changed, 0 insertions, 46 deletions
diff --git a/patches/dmenu-borderoption-20200217-bf60a1e.diff b/patches/dmenu-borderoption-20200217-bf60a1e.diff
deleted file mode 100644
index b9b5726..0000000
--- a/patches/dmenu-borderoption-20200217-bf60a1e.diff
+++ /dev/null
@@ -1,46 +0,0 @@
-From bf60a1eaf98c7aebae51021914e35bc73dd8c23e Mon Sep 17 00:00:00 2001
-From: 0x1bi <ben@0x1bi.net>
-Date: Mon, 17 Feb 2020 11:02:35 -0500
-Subject: [PATCH] added border with option
-
-
-diff --git a/config.def.h b/config.def.h
-index 1edb647..dd3eb31 100644
---- a/config.def.h
-+++ b/config.def.h
-@@ -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;
-diff --git a/dmenu.c b/dmenu.c
-index 65f25ce..f0c3c6f 100644
---- a/dmenu.c
-+++ b/dmenu.c
-@@ -659,9 +659,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, 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);
-
-
-@@ -733,6 +735,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();
-
---
-2.24.1
-