From cda6cfcae4f65e7e8a1b55bede8cc68aa9905796 Mon Sep 17 00:00:00 2001 From: 4zv4l Date: Wed, 3 Nov 2021 15:34:41 +0100 Subject: [PATCH] adding a way to get the hostname for linux --- uwufetch.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/uwufetch.c b/uwufetch.c index 9a87573..3046312 100644 --- a/uwufetch.c +++ b/uwufetch.c @@ -666,11 +666,17 @@ void get_info() #else FILE *cpuinfo = popen("sysctl -a | egrep -i 'hw.model'", "r"); #endif - FILE *host_model_info = fopen("/sys/devices/virtual/dmi/id/board_name", "r"); // first try open the file + FILE *host_model_info = fopen("/etc/hostname","r"); + if (!host_model_info) + host_model_info = fopen("/sys/devices/virtual/dmi/id/board_name", "r"); // first try open the file if (!host_model_info) // if failed - host_model_info = fopen("/sys/devices/virtual/dmi/id/product_name", "r"); // try open another file - if(host_model_info) // if one of the file could be open then close it - fclose(host_model_info); + host_model_info = fopen("/sys/devices/virtual/dmi/id/product_name", "r"); // try open another file + if(host_model_info) { + fgets(line, 256, host_model_info); + line[strlen(line)-1] = '\0'; + sprintf(host_model,"%s",line); + fclose(host_model_info); + } #ifdef __WINDOWS__ host_model_info = popen("wmic computersystem get model", "r"); while (fgets(line, sizeof(line), host_model_info))