aboutsummaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorsewn <sewn@disroot.org>2024-03-10 18:00:48 +0300
committeradnano <me@adnano.co>2024-03-17 07:33:55 -0400
commit9e9284666c9fcf3278ad17f98a247658db8b2269 (patch)
treebcbba30593e468ee5e8186291ccad6556a3c21ab /menu.c
parent6ad7a303ef2ff130b84cfa718ace423a3101dbbb (diff)
downloadwmenu-9e9284666c9fcf3278ad17f98a247658db8b2269.tar.gz
port dmenu password patch
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index f48a8f0..f95409f 100644
--- a/menu.c
+++ b/menu.c
@@ -89,11 +89,11 @@ static bool parse_color(const char *color, uint32_t *result) {
// Parse menu options from command line arguments.
void menu_getopts(struct menu *menu, int argc, char *argv[]) {
const char *usage =
- "Usage: wmenu [-biv] [-f font] [-l lines] [-o output] [-p prompt]\n"
+ "Usage: wmenu [-biPv] [-f font] [-l lines] [-o output] [-p prompt]\n"
"\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;
@@ -101,6 +101,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);
@@ -335,8 +338,13 @@ static void match_items(struct menu *menu) {
// Read menu items from standard input.
void read_menu_items(struct menu *menu) {
- char buf[sizeof menu->input];
+ if (menu->passwd) {
+ // Don't read standard input in password mode
+ calc_widths(menu);
+ return;
+ }
+ char buf[sizeof menu->input];
struct item **next = &menu->items;
while (fgets(buf, sizeof buf, stdin)) {
char *p = strchr(buf, '\n');