commit 74a5ffd31759ec82df707472d134f99571266689
Author: Geometer1729 <[email protected]>
Date:   Wed Jul 17 11:29:52 2019 -0400

    Update password to dmenu-4.9

diff --git a/tools.suckless.org/dmenu/patches/password/dmenu-password-4.9.diff 
b/tools.suckless.org/dmenu/patches/password/dmenu-password-4.9.diff
new file mode 100644
index 00000000..96b91fb1
--- /dev/null
+++ b/tools.suckless.org/dmenu/patches/password/dmenu-password-4.9.diff
@@ -0,0 +1,65 @@
+--- dmenu-4.9_/dmenu.c 2019-07-17 11:17:08.471766245 -0400
++++ dmenu-4.9/dmenu.c  2019-07-17 11:22:58.069750819 -0400
+@@ -37,7 +37,7 @@ struct item {
+ static char text[BUFSIZ] = "";
+ static char *embed;
+ static int bh, mw, mh;
+-static int inputw = 0, promptw;
++static int inputw = 0, promptw, passwd = 0;
+ static int lrpad; /* sum of left and right padding */
+ static size_t cursor;
+ static struct item *items = NULL;
+@@ -132,6 +132,7 @@ drawmenu(void)
+       unsigned int curpos;
+       struct item *item;
+       int x = 0, y = 0, w;
++ char *censort;
+ 
+       drw_setscheme(drw, scheme[SchemeNorm]);
+       drw_rect(drw, 0, 0, mw, mh, 1, 1);
+@@ -143,7 +144,12 @@ drawmenu(void)
+       /* draw input field */
+       w = (lines > 0 || !matches) ? mw - x : inputw;
+       drw_setscheme(drw, scheme[SchemeNorm]);
+-      drw_text(drw, x, 0, w, bh, lrpad / 2, text, 0);
++      if (passwd) {
++              censort = ecalloc(1, sizeof(text));
++              memset(censort, '.', strlen(text));
++              drw_text(drw, x, 0, w, bh, lrpad / 2, censort, 0);
++              free(censort);
++      } else drw_text(drw, x, 0, w, bh, lrpad / 2, text, 0);
+ 
+       curpos = TEXTW(text) - TEXTW(&text[cursor]);
+       if ((curpos += lrpad / 2 - 1) < w) {
+@@ -525,6 +531,11 @@ readstdin(void)
+       size_t i, imax = 0, size = 0;
+       unsigned int tmpmax = 0;
+ 
++  if(passwd){
++    inputw = lines = 0;
++    return;
++  }
++
+       /* read each line from stdin and add it to the item list */
+       for (i = 0; fgets(buf, sizeof buf, stdin); i++) {
+               if (i + 1 >= size / sizeof *items)
+@@ -682,7 +693,7 @@ setup(void)
+ static void
+ usage(void)
+ {
+-      fputs("usage: dmenu [-bfiv] [-l lines] [-p prompt] [-fn font] [-m 
monitor]
"
++      fputs("usage: dmenu [-bfiPv] [-l lines] [-p prompt] [-fn font] [-m 
monitor]
"
+             "             [-nb color] [-nf color] [-sb color] [-sf color] [-w 
windowid]
", stderr);
+       exit(1);
+ }
+@@ -705,7 +716,9 @@ main(int argc, char *argv[])
+               else if (!strcmp(argv[i], "-i")) { /* case-insensitive item 
matching */
+                       fstrncmp = strncasecmp;
+                       fstrstr = cistrstr;
+-              } else if (i + 1 == argc)
++              } else if (!strcmp(argv[i], "-P"))   /* is the input a password 
*/
++                      passwd = 1;
++              else if (i + 1 == argc)
+                       usage();
+               /* these options take one argument */
+               else if (!strcmp(argv[i], "-l"))   /* number of lines in 
vertical list */


Reply via email to