Fixed #145
This commit is contained in:
parent
92a73b8879
commit
943fa58204
2 changed files with 14 additions and 8 deletions
2
Makefile
2
Makefile
|
@ -27,7 +27,7 @@ build: $(FILES)
|
||||||
debug:
|
debug:
|
||||||
@clear
|
@clear
|
||||||
$(CC) $(CFLAGS_DEBUG) -o $(NAME) $(FILES)
|
$(CC) $(CFLAGS_DEBUG) -o $(NAME) $(FILES)
|
||||||
UWUFETCH_CACHE_ENABLED=true ./uwufetch
|
./uwufetch
|
||||||
|
|
||||||
install:
|
install:
|
||||||
mkdir -p $(DESTDIR)$(PREFIX) $(DESTDIR)$(LIBDIR)/uwufetch $(DESTDIR)$(MANDIR)
|
mkdir -p $(DESTDIR)$(PREFIX) $(DESTDIR)$(LIBDIR)/uwufetch $(DESTDIR)$(MANDIR)
|
||||||
|
|
10
uwufetch.c
10
uwufetch.c
|
@ -128,9 +128,11 @@ int main(int argc, char *argv[])
|
||||||
char buffer[128];
|
char buffer[128];
|
||||||
sscanf(cache_env, "%[TRUEtrue1]", buffer);
|
sscanf(cache_env, "%[TRUEtrue1]", buffer);
|
||||||
cache_enabled = (strcmp(buffer, "true") == 0 || strcmp(buffer, "TRUE") == 0 || strcmp(buffer, "1") == 0);
|
cache_enabled = (strcmp(buffer, "true") == 0 || strcmp(buffer, "TRUE") == 0 || strcmp(buffer, "1") == 0);
|
||||||
if (cache_enabled) {
|
if (cache_enabled)
|
||||||
|
{
|
||||||
// if no cache file found write to it
|
// if no cache file found write to it
|
||||||
if (!read_cache()) {
|
if (!read_cache())
|
||||||
|
{
|
||||||
get_info();
|
get_info();
|
||||||
write_cache();
|
write_cache();
|
||||||
}
|
}
|
||||||
|
@ -467,6 +469,8 @@ int read_cache()
|
||||||
|
|
||||||
char line[256];
|
char line[256];
|
||||||
|
|
||||||
|
int gpun = 0;
|
||||||
|
|
||||||
while (fgets(line, sizeof(line), cache_fp))
|
while (fgets(line, sizeof(line), cache_fp))
|
||||||
{
|
{
|
||||||
sscanf(line, "user=%99[^\n]", user);
|
sscanf(line, "user=%99[^\n]", user);
|
||||||
|
@ -475,6 +479,8 @@ int read_cache()
|
||||||
sscanf(line, "host_model=%99[^\n]", host_model);
|
sscanf(line, "host_model=%99[^\n]", host_model);
|
||||||
sscanf(line, "kernel=%99[^\n]", kernel);
|
sscanf(line, "kernel=%99[^\n]", kernel);
|
||||||
sscanf(line, "cpu=%99[^\n]", cpu_model);
|
sscanf(line, "cpu=%99[^\n]", cpu_model);
|
||||||
|
if (sscanf(line, "gpu=%99[^\n]", gpu_model[gpun]) != 0)
|
||||||
|
gpun++;
|
||||||
sscanf(line, "screen_width=%i", &screen_width);
|
sscanf(line, "screen_width=%i", &screen_width);
|
||||||
sscanf(line, "screen_height=%i", &screen_height);
|
sscanf(line, "screen_height=%i", &screen_height);
|
||||||
sscanf(line, "shell=%99[^\n]", shell);
|
sscanf(line, "shell=%99[^\n]", shell);
|
||||||
|
|
Loading…
Reference in a new issue