fix home directory spam, that could've been bad

This commit is contained in:
speedie 2023-03-06 20:49:54 +01:00
parent 5ae0fc4eea
commit f2db911334
2 changed files with 62 additions and 57 deletions

View file

@ -189,8 +189,9 @@ loadimagecache(const char *file, int *width, int *height)
return; return;
} }
if (generatecache) {
/* try find image from cache first */ /* try find image from cache first */
if(!(xdg_cache = getenv("XDG_CACHE_HOME")) && generatecache) { if(!(xdg_cache = getenv("XDG_CACHE_HOME"))) {
if(!(home = getenv("HOME")) && (pw = getpwuid(getuid()))) if(!(home = getenv("HOME")) && (pw = getpwuid(getuid())))
home = pw->pw_dir; home = pw->pw_dir;
if(!home) { if(!home) {
@ -221,9 +222,9 @@ loadimagecache(const char *file, int *width, int *height)
sprintf(&md5[i*2], "%02x", (unsigned int)digest[i]); sprintf(&md5[i*2], "%02x", (unsigned int)digest[i]);
/* path for cached thumbnail */ /* path for cached thumbnail */
if (xdg_cache && generatecache) if (xdg_cache)
slen = snprintf(NULL, 0, "%s/thumbnails/%s/%s.png", xdg_cache, dsize, md5)+1; slen = snprintf(NULL, 0, "%s/thumbnails/%s/%s.png", xdg_cache, dsize, md5)+1;
else if (generatecache) else
slen = snprintf(NULL, 0, "%s/.thumbnails/%s/%s.png", home, dsize, md5)+1; slen = snprintf(NULL, 0, "%s/.thumbnails/%s/%s.png", home, dsize, md5)+1;
if(!(buf = malloc(slen))) { if(!(buf = malloc(slen))) {
@ -231,12 +232,12 @@ loadimagecache(const char *file, int *width, int *height)
return; return;
} }
if (xdg_cache && generatecache) if (xdg_cache)
sprintf(buf, "%s/thumbnails/%s/%s.png", xdg_cache, dsize, md5); sprintf(buf, "%s/thumbnails/%s/%s.png", xdg_cache, dsize, md5);
else if (generatecache) else
sprintf(buf, "%s/.thumbnails/%s/%s.png", home, dsize, md5); sprintf(buf, "%s/.thumbnails/%s/%s.png", home, dsize, md5);
if (generatecache) loadimage(buf, width, height); loadimage(buf, width, height);
if (image && *width < imagewidth && *height < imageheight) { if (image && *width < imagewidth && *height < imageheight) {
imlib_free_image(); imlib_free_image();
@ -250,19 +251,21 @@ loadimagecache(const char *file, int *width, int *height)
free(buf); free(buf);
return; return;
} }
}
/* we din't find anything from cache, or it was just wrong */ /* we din't find anything from cache, or it was just wrong */
loadimage(file, width, height); loadimage(file, width, height);
if (!image) {
free(buf);
return;
}
scaleimage(width, height); scaleimage(width, height);
if (!generatecache) return;
imlib_image_set_format("png"); imlib_image_set_format("png");
if (buf && generatecache) {
createifnexist_rec(buf); createifnexist_rec(buf);
imlib_save_image(buf); imlib_save_image(buf);
free(buf); free(buf);
}
} }
void void

View file

@ -269,6 +269,8 @@ setimgsize(const Arg *arg)
imageheight -= arg->i; imageheight -= arg->i;
imagewidth -= arg->i; imagewidth -= arg->i;
return; return;
} else {
drawimage();
} }
drawmenu(); drawmenu();