all repos — tint2 @ b4677426a4e0105788155a0a1f388c53de520b67

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Recursive search for launcher entries without a full path (issue #565)
o9000 mrovi9000@gmail.com
commit

b4677426a4e0105788155a0a1f388c53de520b67

parent

745108dc6dc8464abc5528d8f558faafcf60589a

1 files changed, 58 insertions(+), 15 deletions(-)

jump to
M src/launcher/apps-common.csrc/launcher/apps-common.c

@@ -20,11 +20,17 @@ /* http://standards.freedesktop.org/desktop-entry-spec/ */

#include "apps-common.h" #include "common.h" +#include "strnatcmp.h" #include <glib.h> #include <stdio.h> #include <stdlib.h> #include <string.h> + +static gint compare_strings(gconstpointer a, gconstpointer b) +{ + return strnatcasecmp((const char*)a, (const char*)b); +} int parse_dektop_line(char *line, char **key, char **value) {

@@ -104,13 +110,12 @@ }

gboolean read_desktop_file_full_path(const char *path, DesktopEntry *entry) { - entry->path = strdup(path); entry->name = entry->icon = entry->exec = NULL; entry->hidden_from_menus = FALSE; - FILE *fp = fopen(entry->path, "rt"); + FILE *fp = fopen(path, "rt"); if (fp == NULL) { - fprintf(stderr, "Could not open file %s\n", entry->path); + fprintf(stderr, "Could not open file %s\n", path); return FALSE; }

@@ -179,25 +184,63 @@ free(line);

return entry->exec != NULL; } +gboolean read_desktop_file_from_dir(const char *path, const char *file_name, DesktopEntry *entry) +{ + gchar *full_path = g_build_filename(path, file_name, NULL); + if (read_desktop_file_full_path(full_path, entry)) { + g_free(full_path); + return TRUE; + } + free(entry->name); + free(entry->icon); + free(entry->exec); + entry->name = entry->icon = entry->exec = NULL; + + GList *subdirs = NULL; + + GDir *d = g_dir_open(path, 0, NULL); + if (d) { + const gchar *name; + while ((name = g_dir_read_name(d))) { + gchar *child = g_build_filename(path, name, NULL); + if (g_file_test(child, G_FILE_TEST_IS_DIR)) { + subdirs = g_list_append(subdirs, child); + } else { + g_free(child); + } + } + g_dir_close(d); + } + + subdirs = g_list_sort(subdirs, compare_strings); + gboolean found = FALSE; + for (GList *l = subdirs; l; l = g_list_next(l)) { + if (read_desktop_file_from_dir(l->data, file_name, entry)) { + found = TRUE; + break; + } + } + + for (GList *l = subdirs; l; l = g_list_next(l)) { + g_free(l->data); + } + g_list_free(subdirs); + g_free(full_path); + + return found; +} + gboolean read_desktop_file(const char *path, DesktopEntry *entry) { + entry->path = strdup(path); + entry->name = entry->icon = entry->exec = NULL; + if (strchr(path, '/')) return read_desktop_file_full_path(path, entry); - entry->path = NULL; for (const GSList *location = get_apps_locations(); location; location = g_slist_next(location)) { - gchar *full_path = g_build_filename(location->data, path, NULL); - if (read_desktop_file_full_path(full_path, entry)) { - free(entry->path); - entry->path = strdup(full_path); - g_free(full_path); + if (read_desktop_file_from_dir(location->data, path, entry)) return TRUE; - } else { - free_desktop_entry(entry); - } - // TODO: Search subdirectories recursively - g_free(full_path); } - entry->path = strdup(path); return FALSE; }