Added new config options, disabled optimization in makefile to prevent segmentation fault (i have no idea)
This commit is contained in:
parent
69fe7f2614
commit
3ce44faf68
4 changed files with 73 additions and 26 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ uwufetch
|
||||||
*.zip
|
*.zip
|
||||||
*.vscode
|
*.vscode
|
||||||
*.gz
|
*.gz
|
||||||
|
*.1
|
6
Makefile
6
Makefile
|
@ -1,6 +1,6 @@
|
||||||
NAME = uwufetch
|
NAME = uwufetch
|
||||||
FILES = uwufetch.c
|
FILES = uwufetch.c
|
||||||
CFLAGS = -O3
|
CFLAGS =
|
||||||
CFLAGS_DEBUG = -Wall -Wextra
|
CFLAGS_DEBUG = -Wall -Wextra
|
||||||
PREFIX = /usr/bin
|
PREFIX = /usr/bin
|
||||||
CC = cc
|
CC = cc
|
||||||
|
@ -9,12 +9,12 @@ MAN_COMPILER = pandoc
|
||||||
build: $(FILES)
|
build: $(FILES)
|
||||||
$(CC) $(CFLAGS) -o $(NAME) $(FILES)
|
$(CC) $(CFLAGS) -o $(NAME) $(FILES)
|
||||||
$(MAN_COMPILER) $(NAME)_man.md -st man -o $(NAME).1
|
$(MAN_COMPILER) $(NAME)_man.md -st man -o $(NAME).1
|
||||||
@gzip $(NAME).1
|
@#gzip $(NAME).1
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
@clear
|
@clear
|
||||||
$(CC) $(CFLAGS_DEBUG) -o $(NAME) $(FILES)
|
$(CC) $(CFLAGS_DEBUG) -o $(NAME) $(FILES)
|
||||||
./uwufetch --config ~/.config/uwufetch/config
|
./uwufetch
|
||||||
|
|
||||||
install:
|
install:
|
||||||
cp $(NAME) $(DESTDIR)$(PREFIX)/$(NAME)
|
cp $(NAME) $(DESTDIR)$(PREFIX)/$(NAME)
|
||||||
|
|
70
uwufetch.c
70
uwufetch.c
|
@ -47,7 +47,19 @@ struct sysinfo sys;
|
||||||
struct winsize win;
|
struct winsize win;
|
||||||
int ram_total, ram_used = 0;
|
int ram_total, ram_used = 0;
|
||||||
// initialise the variables to store data, gpu array can hold up to 8 gpus
|
// initialise the variables to store data, gpu array can hold up to 8 gpus
|
||||||
int pkgs, a_i_flag = 0, target_width = 0;
|
int pkgs, target_width = 0;
|
||||||
|
// all flags available
|
||||||
|
int ascii_image_flag = 0,
|
||||||
|
show_user_info = 1,
|
||||||
|
show_os = 1,
|
||||||
|
show_kernel = 1,
|
||||||
|
show_cpu = 1,
|
||||||
|
show_gpu = 1,
|
||||||
|
show_ram = 1,
|
||||||
|
show_shell = 1,
|
||||||
|
show_pkgs = 1,
|
||||||
|
show_uptime = 1,
|
||||||
|
show_colors = 1;
|
||||||
char user[32], host[256], shell[64], version_name[64], cpu_model[256],
|
char user[32], host[256], shell[64], version_name[64], cpu_model[256],
|
||||||
gpu_model[8][256] = { { '0' }, { '0' }, { '0' }, { '0' }, { '0' }, { '0' }, { '0' }, { '0' } },
|
gpu_model[8][256] = { { '0' }, { '0' }, { '0' }, { '0' }, { '0' }, { '0' }, { '0' }, { '0' } },
|
||||||
pkgman_name[64], image_name[32];
|
pkgman_name[64], image_name[32];
|
||||||
|
@ -82,10 +94,10 @@ int main(int argc, char *argv[]) {
|
||||||
while ((opt = getopt_long(argc, argv, "ad:hilc:", long_options, NULL)) != -1) {
|
while ((opt = getopt_long(argc, argv, "ad:hilc:", long_options, NULL)) != -1) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'a':
|
case 'a':
|
||||||
a_i_flag = 0;
|
ascii_image_flag = 0;
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
a_i_flag = 1;
|
ascii_image_flag = 1;
|
||||||
sprintf(image_name, "%s", optarg);
|
sprintf(image_name, "%s", optarg);
|
||||||
break;
|
break;
|
||||||
case 'd':
|
case 'd':
|
||||||
|
@ -95,7 +107,7 @@ int main(int argc, char *argv[]) {
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
return 0;
|
return 0;
|
||||||
case 'i':
|
case 'i':
|
||||||
a_i_flag = 1;
|
ascii_image_flag = 1;
|
||||||
break;
|
break;
|
||||||
case 'l':
|
case 'l':
|
||||||
list(argv[0]);
|
list(argv[0]);
|
||||||
|
@ -104,8 +116,8 @@ int main(int argc, char *argv[]) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((argc == 1 && a_i_flag == 0) || (argc > 1 && a_i_flag == 0)) print_ascii();
|
if ((argc == 1 && ascii_image_flag == 0) || (argc > 1 && ascii_image_flag == 0)) print_ascii();
|
||||||
else if (a_i_flag) print_image();
|
else if (ascii_image_flag) print_image();
|
||||||
uwu_name();
|
uwu_name();
|
||||||
print_info();
|
print_info();
|
||||||
}
|
}
|
||||||
|
@ -113,13 +125,24 @@ int main(int argc, char *argv[]) {
|
||||||
void parse_config() {
|
void parse_config() {
|
||||||
char line[256];
|
char line[256];
|
||||||
char *homedir = getenv("HOME");
|
char *homedir = getenv("HOME");
|
||||||
|
char *temp_buffer = "";
|
||||||
|
|
||||||
FILE *config = fopen(strcat(homedir, "/.config/uwufetch/config"), "r");
|
FILE *config = fopen(strcat(homedir, "/.config/uwufetch/config"), "r");
|
||||||
if(config == NULL) return;
|
if(config == NULL) return;
|
||||||
while(fgets(line, sizeof(line), config)) {
|
while(fgets(line, sizeof(line), config)) {
|
||||||
if(line[0] == '#') continue;
|
if(line[0] == '#') continue;
|
||||||
if (sscanf(line, "image%s", image_name)) a_i_flag = 1;
|
ascii_image_flag = sscanf(line, "image=%s", image_name);
|
||||||
sscanf(line, "distro=%s", version_name);
|
sscanf(line, "distro=%s", version_name);
|
||||||
|
if (sscanf(line, "nouser%s", temp_buffer)) show_user_info = 0;
|
||||||
|
if (sscanf(line, "noos%s", temp_buffer)) show_os = 0;
|
||||||
|
if (sscanf(line, "nokernel%s", temp_buffer)) show_kernel = 0;
|
||||||
|
if (sscanf(line, "nocpu%s", temp_buffer)) show_cpu = 0;
|
||||||
|
if (sscanf(line, "nogpu%s", temp_buffer)) show_gpu = 0;
|
||||||
|
if (sscanf(line, "noram%s", temp_buffer)) show_ram = 0;
|
||||||
|
if (sscanf(line, "noshell%s", temp_buffer)) show_shell = 0;
|
||||||
|
if (sscanf(line, "nopkgs%s", temp_buffer)) show_pkgs = 0;
|
||||||
|
if (sscanf(line, "nouptime%s", temp_buffer)) show_uptime = 0;
|
||||||
|
if (sscanf(line, "nocolors%s", temp_buffer)) show_colors = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,29 +184,32 @@ void print_info() {
|
||||||
// store sys info in the sys again
|
// store sys info in the sys again
|
||||||
sysinfo(&sys);
|
sysinfo(&sys);
|
||||||
// print collected info - from host to cpu info
|
// print collected info - from host to cpu info
|
||||||
printf("\033[9A\033[18C%s%s%s@%s\n", NORMAL, BOLD, user, host);
|
printf("\033[9A"); // to align info text
|
||||||
printf("\033[18C%s%sOWOS %s%s\n", NORMAL, BOLD, NORMAL, version_name);
|
if (show_user_info) printf("\033[18C%s%s%s@%s\n", NORMAL, BOLD, user, host);
|
||||||
printf("\033[18C%s%sKEWNEL %s%s %s\n", NORMAL, BOLD, NORMAL, sys_var.release, sys_var.machine);
|
if (show_os) printf("\033[18C%s%sOWOS %s%s\n", NORMAL, BOLD, NORMAL, version_name);
|
||||||
printf("\033[18C%s%sCPUWU %s%s\n", NORMAL, BOLD, NORMAL, cpu_model);
|
if (show_kernel) printf("\033[18C%s%sKEWNEL %s%s %s\n", NORMAL, BOLD, NORMAL, sys_var.release, sys_var.machine);
|
||||||
|
if (show_cpu) printf("\033[18C%s%sCPUWU %s%s\n", NORMAL, BOLD, NORMAL, cpu_model);
|
||||||
|
|
||||||
// print the gpus
|
// print the gpus
|
||||||
int gpu_iter = 0;
|
if (show_gpu) {
|
||||||
while(gpu_model[gpu_iter][0] != '0') {
|
int gpu_iter = 0;
|
||||||
printf( "\033[18C%s%sGPUWU %s%s\n",
|
while(gpu_model[gpu_iter][0] != '0') {
|
||||||
NORMAL, BOLD, NORMAL, gpu_model[gpu_iter]);
|
printf( "\033[18C%s%sGPUWU %s%s\n",
|
||||||
gpu_iter++;
|
NORMAL, BOLD, NORMAL, gpu_model[gpu_iter]);
|
||||||
|
gpu_iter++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// print ram to uptime and colors
|
// print ram to uptime and colors
|
||||||
printf("\033[18C%s%sWAM %s%i MB/%i MB\n",
|
if (show_ram) printf("\033[18C%s%sWAM %s%i MB/%i MB\n",
|
||||||
NORMAL, BOLD, NORMAL, (ram_used), ram_total);
|
NORMAL, BOLD, NORMAL, (ram_used), ram_total);
|
||||||
printf("\033[18C%s%sSHELL %s%s\n",
|
if (show_shell) printf("\033[18C%s%sSHELL %s%s\n",
|
||||||
NORMAL, BOLD, NORMAL, shell);
|
NORMAL, BOLD, NORMAL, shell);
|
||||||
printf("\033[18C%s%sPKGS %s%s%d %s\n",
|
if (show_pkgs) printf("\033[18C%s%sPKGS %s%s%d %s\n",
|
||||||
NORMAL, BOLD, NORMAL, NORMAL, pkgs, pkgman_name);
|
NORMAL, BOLD, NORMAL, NORMAL, pkgs, pkgman_name);
|
||||||
printf("\033[18C%s%sUWUPTIME %s"/*"%lid, "*/"%lih, %lim\n",
|
if (show_uptime) printf("\033[18C%s%sUWUPTIME %s"/*"%lid, "*/"%lih, %lim\n",
|
||||||
NORMAL, BOLD, NORMAL, /*sys.uptime/60/60/24,*/ sys.uptime/60/60, sys.uptime/60%60);
|
NORMAL, BOLD, NORMAL, /*sys.uptime/60/60/24,*/ sys.uptime/60/60, sys.uptime/60%60);
|
||||||
printf("\033[18C%s%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\n",
|
if (show_colors) printf("\033[18C%s%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\u2587\u2587%s\n",
|
||||||
BOLD, BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, NORMAL);
|
BOLD, BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, NORMAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -530,7 +556,7 @@ void uwu_name() { // uwufies distro name
|
||||||
|
|
||||||
else {
|
else {
|
||||||
sprintf(version_name, "%s", "unknown");
|
sprintf(version_name, "%s", "unknown");
|
||||||
if (a_i_flag == 1) {
|
if (ascii_image_flag == 1) {
|
||||||
print_image();
|
print_image();
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,9 @@ prints the logo as ascii text (default)
|
||||||
-c --custom\
|
-c --custom\
|
||||||
you can choose a custom image path
|
you can choose a custom image path
|
||||||
|
|
||||||
|
--config\
|
||||||
|
you can change config path
|
||||||
|
|
||||||
-d --distro\
|
-d --distro\
|
||||||
you can choose the logo to print by the distro name
|
you can choose the logo to print by the distro name
|
||||||
|
|
||||||
|
@ -31,6 +34,23 @@ prints image instead of ascii logo
|
||||||
-l --list\
|
-l --list\
|
||||||
prints a list of all supported distributions
|
prints a list of all supported distributions
|
||||||
|
|
||||||
|
# CONFIG FILE
|
||||||
|
The config file is located in $HOME/.config/uwufetch/config (you need to create it), but you can change the path by using the `--config` option.
|
||||||
|
|
||||||
|
## OPTIONS
|
||||||
|
distribution=name\ \ \ \ \ # use it to change displayed distribution\
|
||||||
|
image=/path/to/image\ \ \ # enable images (leave blank), or use custom image path\
|
||||||
|
nouser\ \ \ \ \ \ \ \ \ \ \ # disable username and hostname\
|
||||||
|
noos\ \ \ \ \ \ \ \ \ \ \ # disable os\
|
||||||
|
nokernel\ \ \ \ \ \ \ \ \ # disable kernel\
|
||||||
|
nocpu\ \ \ \ \ \ \ \ \ \ \ # disable cpu\
|
||||||
|
nogpu\ \ \ \ \ \ \ \ \ \ \ # disable gpu\
|
||||||
|
noram\ \ \ \ \ \ \ \ \ \ \ # disable ram\
|
||||||
|
noshell\ \ \ \ \ \ \ \ \ \ # disable shell\
|
||||||
|
nopkgs\ \ \ \ \ \ \ \ \ \ \ # disable pkgs\
|
||||||
|
nouptime\ \ \ \ \ \ \ \ \ # disable uptime\
|
||||||
|
nocolors\ \ \ \ \ \ \ \ \ # disable colors
|
||||||
|
|
||||||
# SUPPORTED DISTRIBUTIONS
|
# SUPPORTED DISTRIBUTIONS
|
||||||
Distribution name\ \ \ \ \ -d option
|
Distribution name\ \ \ \ \ -d option
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue