aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-05-04 21:44:59 -0400
committeradnano <me@adnano.co>2024-05-04 21:44:59 -0400
commit15d7c7bcc29e66f174c4de2420d371a9737ac6e4 (patch)
tree3be3d17ffb062e95f92d90dbdd7fb74fa6e4f538
parent963a677631f00b9b259e101a5e3dad85da6ccbf2 (diff)
downloadwmenu-15d7c7bcc29e66f174c4de2420d371a9737ac6e4.tar.gz
Revert "Remove wmenu -P flag"
This reverts commit c05ab7520b452ee3b8bd974a18511dc370cbeabe.
-rw-r--r--docs/wmenu.1.scd6
-rw-r--r--menu.c5
-rw-r--r--menu.h2
-rw-r--r--render.c18
-rw-r--r--wmenu.c4
5 files changed, 30 insertions, 5 deletions
diff --git a/docs/wmenu.1.scd b/docs/wmenu.1.scd
index 1ee623a..f489c84 100644
--- a/docs/wmenu.1.scd
+++ b/docs/wmenu.1.scd
@@ -6,7 +6,7 @@ wmenu - dynamic menu for Wayland
# SYNOPSIS
-*wmenu* [-biv] \
+*wmenu* [-biPv] \
[-f _font_] \
[-l _lines_] \
[-o _output_] \
@@ -35,6 +35,10 @@ $PATH and runs the result.
*-i*
wmenu matches menu items case insensitively.
+*-P*
+ wmenu will not directly display the keyboard input, but instead replace it
+ with asterisks. All data from stdin will be ignored.
+
*-v*
prints version information to stdout, then exits.
diff --git a/menu.c b/menu.c
index 3e8f9be..baa3061 100644
--- a/menu.c
+++ b/menu.c
@@ -89,7 +89,7 @@ void menu_getopts(struct menu *menu, int argc, char *argv[]) {
"\t[-N color] [-n color] [-M color] [-m color] [-S color] [-s color]\n";
int opt;
- while ((opt = getopt(argc, argv, "bhivf:l:o:p:N:n:M:m:S:s:")) != -1) {
+ while ((opt = getopt(argc, argv, "bhiPvf:l:o:p:N:n:M:m:S:s:")) != -1) {
switch (opt) {
case 'b':
menu->bottom = true;
@@ -97,6 +97,9 @@ void menu_getopts(struct menu *menu, int argc, char *argv[]) {
case 'i':
menu->strncmp = strncasecmp;
break;
+ case 'P':
+ menu->passwd = true;
+ break;
case 'v':
puts("wmenu " VERSION);
exit(EXIT_SUCCESS);
diff --git a/menu.h b/menu.h
index 0a6b22c..724aa53 100644
--- a/menu.h
+++ b/menu.h
@@ -30,6 +30,8 @@ struct menu {
bool bottom;
// The function used to match menu items
int (*strncmp)(const char *, const char *, size_t);
+ // Whether the input is a password
+ bool passwd;
// The font used to display the menu
char *font;
// The number of lines to list items vertically
diff --git a/render.c b/render.c
index e33898d..3813af5 100644
--- a/render.c
+++ b/render.c
@@ -79,8 +79,22 @@ static void render_prompt(struct menu *menu, cairo_t *cairo) {
// Renders the input text.
static void render_input(struct menu *menu, cairo_t *cairo) {
- render_text(menu, cairo, menu->input, menu->promptw, 0, 0,
- 0, menu->normalfg, menu->padding, menu->padding);
+ char *censort = NULL;
+
+ if (menu->passwd) {
+ censort = calloc(1, sizeof(menu->input));
+ if (!censort) {
+ return;
+ }
+ memset(censort, '*', strlen(menu->input));
+ }
+
+ render_text(menu, cairo, menu->passwd ? censort : menu->input,
+ menu->promptw, 0, 0, 0, menu->normalfg, menu->padding, menu->padding);
+
+ if (censort) {
+ free(censort);
+ }
}
// Renders a cursor for the input field.
diff --git a/wmenu.c b/wmenu.c
index e7d37d9..0a3d0b0 100644
--- a/wmenu.c
+++ b/wmenu.c
@@ -19,7 +19,9 @@ static void read_items(struct menu *menu) {
int main(int argc, char *argv[]) {
struct menu *menu = menu_create();
menu_getopts(menu, argc, argv);
- read_items(menu);
+ if (!menu->passwd) {
+ read_items(menu);
+ }
int status = menu_run(menu);
menu_destroy(menu);
return status;