From d2c0eed7e253cf0a437e3b5c1d4955a8597b1caa Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 9 Jan 2017 22:06:20 +0100 Subject: [PATCH] extra: generate the theme cache var with efreet api there can be some people who are changing the cache home directory to some other value than the standard xdg stuff. --- src/lib/extra.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/extra.c b/src/lib/extra.c index d76fa2b..cdc2f81 100644 --- a/src/lib/extra.c +++ b/src/lib/extra.c @@ -240,7 +240,7 @@ _theme_cache_path_get() char *path; path = malloc(PATH_MAX * sizeof(char)); - sprintf(path, "%s/.cache/%s/%s.json", eina_environment_home_get(), PACKAGE_NAME, "themes"); + sprintf(path, "%s/%s/%s.json", efreet_cache_home_get(), PACKAGE_NAME, "themes"); return path; }