diff options
author | adnano <me@adnano.co> | 2024-05-03 19:10:28 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-05-03 19:10:28 -0400 |
commit | 8f19d6a8d2f34aeb4060d4374eb204b270ffbaa8 (patch) | |
tree | 844a68afc304b1d009bdcd0fd78a593ca7825820 /wmenu-run.c | |
parent | 92d3b294aeff5b36916782847bae4389c10e8f17 (diff) | |
download | wmenu-8f19d6a8d2f34aeb4060d4374eb204b270ffbaa8.tar.gz |
wmenu-run: Populate items from PATH
Diffstat (limited to 'wmenu-run.c')
-rw-r--r-- | wmenu-run.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/wmenu-run.c b/wmenu-run.c index fe79ece..cbc35a1 100644 --- a/wmenu-run.c +++ b/wmenu-run.c @@ -1,4 +1,5 @@ #define _POSIX_C_SOURCE 200809L +#include <dirent.h> #include <errno.h> #include <stdlib.h> #include <string.h> @@ -9,13 +10,19 @@ #include "xdg-activation-v1-client-protocol.h" static void read_items(struct menu *menu) { - char buf[sizeof menu->input]; - while (fgets(buf, sizeof buf, stdin)) { - char *p = strchr(buf, '\n'); - if (p) { - *p = '\0'; + char *path = getenv("PATH"); + for (char *p = strtok(path, ":"); p != NULL; p = strtok(NULL, ":")) { + DIR *dir = opendir(p); + if (dir == NULL) { + continue; } - menu_add_item(menu, strdup(buf)); + for (struct dirent *ent = readdir(dir); ent != NULL; ent = readdir(dir)) { + if (ent->d_name[0] == '.') { + continue; + } + menu_add_item(menu, strdup(ent->d_name), true); + } + closedir(dir); } } |