wmenu-run: Populate items from PATH

This commit is contained in:
adnano 2024-05-03 19:10:28 -04:00
parent 92d3b294ae
commit 8f19d6a8d2
4 changed files with 68 additions and 44 deletions

View file

@ -12,7 +12,7 @@ static void read_items(struct menu *menu) {
if (p) {
*p = '\0';
}
menu_add_item(menu, strdup(buf));
menu_add_item(menu, strdup(buf), false);
}
}