Merge branch 'main' into main
This commit is contained in:
commit
33eecc61b3
2 changed files with 442 additions and 445 deletions
31
Makefile
31
Makefile
|
@ -1,31 +1,32 @@
|
||||||
NAME = uwufetch
|
NAME = uwufetch
|
||||||
FILES = uwufetch.c
|
FILES = uwufetch.c
|
||||||
FLAGS = -O3
|
CFLAGS = -O3
|
||||||
FLAGS_DEBUG = -Wall -Wextra
|
CFLAGS_DEBUG = -Wall -Wextra
|
||||||
INSTALL_DIR = /usr/bin/
|
PREFIX = /usr/bin
|
||||||
|
CC = cc
|
||||||
|
|
||||||
build: uwufetch.c
|
build: $(FILES)
|
||||||
gcc $(FLAGS) -o $(NAME) $(FILES)
|
$(CC) $(CFLAGS) -o $(NAME) $(FILES)
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
@clear
|
@clear
|
||||||
gcc $(FLAGS_DEBUG) -o $(NAME) $(FILES)
|
$(CC) $(CFLAGS_DEBUG) -o $(NAME) $(FILES)
|
||||||
./uwufetch
|
./uwufetch
|
||||||
|
|
||||||
install:
|
install:
|
||||||
cp $(NAME) $(INSTALL_DIR)$(NAME)
|
cp $(NAME) $(DESTDIR)$(INSTALL_DIR)/$(NAME)
|
||||||
ls /usr/lib/uwufetch/ 2> /dev/null || mkdir /usr/lib/uwufetch/
|
ls $(DESTDIR)/usr/lib/uwufetch/ 2> /dev/null || mkdir $(DESTDIR)/usr/lib/uwufetch/
|
||||||
cp res/* /usr/lib/uwufetch/
|
cp res/* $(DESTDIR)/usr/lib/uwufetch/
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm $(INSTALL_DIR)$(NAME)
|
rm -f $(DESTDIR)$(INSTALL_DIR)/$(NAME)
|
||||||
rm -rf /usr/lib/uwufetch/
|
rm -rf $(DESTDIR)/usr/lib/uwufetch/
|
||||||
|
|
||||||
termux: build
|
termux: build
|
||||||
cp $(NAME) /data/data/com.termux/files$(INSTALL_DIR)$(NAME)
|
cp $(NAME) $(DESTDIR)/data/data/com.termux/files$(INSTALL_DIR)/$(NAME)
|
||||||
ls /data/data/com.termux/files/usr/lib/uwufetch/ > /dev/null || mkdir /data/data/com.termux/files/usr/lib/uwufetch/
|
ls $(DESTDIR)/data/data/com.termux/files/usr/lib/uwufetch/ > /dev/null || mkdir $(DESTDIR)/data/data/com.termux/files/usr/lib/uwufetch/
|
||||||
cp res/* /data/data/com.termux/files/usr/lib/uwufetch/
|
cp res/* /data/data/com.termux/files/usr/lib/uwufetch/
|
||||||
|
|
||||||
termux_uninstall:
|
termux_uninstall:
|
||||||
rm -rf /data/data/com.termux/files$(INSTALL_DIR)$(NAME)
|
rm -rf $(DESTDIR)/data/data/com.termux/files$(INSTALL_DIR)/$(NAME)
|
||||||
rm -rf /data/data/com.termux/files/usr/lib/uwufetch/
|
rm -rf $(DESTDIR)/data/data/com.termux/files/usr/lib/uwufetch/
|
||||||
|
|
168
uwufetch.c
168
uwufetch.c
|
@ -37,6 +37,11 @@
|
||||||
#define PINK "\x1b[38;5;201m"
|
#define PINK "\x1b[38;5;201m"
|
||||||
#define LPINK "\x1b[38;5;213m"
|
#define LPINK "\x1b[38;5;213m"
|
||||||
|
|
||||||
|
struct package_manager {
|
||||||
|
char command_string[128]; // command to get number of packages installed
|
||||||
|
char pkgman_name[16]; // name of the package manager
|
||||||
|
};
|
||||||
|
|
||||||
struct utsname sys_var;
|
struct utsname sys_var;
|
||||||
struct sysinfo sys;
|
struct sysinfo sys;
|
||||||
struct winsize win;
|
struct winsize win;
|
||||||
|
@ -45,7 +50,9 @@ 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, a_i_flag = 0, target_width = 0;
|
||||||
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'}}, pkgman_name[64], image_name[32];
|
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' } },
|
||||||
|
pkgman_name[64], image_name[32];
|
||||||
|
|
||||||
int pkgman();
|
int pkgman();
|
||||||
void get_info();
|
void get_info();
|
||||||
|
@ -104,13 +111,6 @@ int main(int argc, char *argv[]) {
|
||||||
int pkgman() { // this is just a function that returns the total of installed packages
|
int pkgman() { // this is just a function that returns the total of installed packages
|
||||||
int total = 0;
|
int total = 0;
|
||||||
|
|
||||||
// TODO: should this be at the top of the program? maybe in a config.c file?
|
|
||||||
// TODO: do we need to `free()` this? I have no idea how to do memory management in C...
|
|
||||||
struct package_manager {
|
|
||||||
char command_string[128]; // command to get number of packages installed
|
|
||||||
char pkgman_name[16]; // name of the package manager
|
|
||||||
};
|
|
||||||
|
|
||||||
struct package_manager pkgmans[] = {
|
struct package_manager pkgmans[] = {
|
||||||
{ "apt list --installed 2> /dev/null | wc -l", "(apt)" },
|
{ "apt list --installed 2> /dev/null | wc -l", "(apt)" },
|
||||||
{ "apk info 2> /dev/null | wc -l", "(apk)" },
|
{ "apk info 2> /dev/null | wc -l", "(apk)" },
|
||||||
|
@ -146,14 +146,10 @@ 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",
|
printf("\033[9A\033[18C%s%s%s@%s\n", NORMAL, BOLD, user, host);
|
||||||
NORMAL, BOLD, user, host);
|
printf("\033[18C%s%sOWOS %s%s\n", NORMAL, BOLD, NORMAL, version_name);
|
||||||
printf( "\033[18C%s%sOWOS %s%s\n",
|
printf("\033[18C%s%sKEWNEL %s%s %s\n", NORMAL, BOLD, NORMAL, sys_var.release, sys_var.machine);
|
||||||
NORMAL, BOLD, NORMAL, version_name);
|
printf("\033[18C%s%sCPUWU %s%s\n", NORMAL, BOLD, NORMAL, cpu_model);
|
||||||
printf( "\033[18C%s%sKEWNEL %s%s %s\n",
|
|
||||||
NORMAL, BOLD, NORMAL, sys_var.release, sys_var.machine);
|
|
||||||
printf( "\033[18C%s%sCPUWU %s%s\n",
|
|
||||||
NORMAL, BOLD, NORMAL, cpu_model);
|
|
||||||
|
|
||||||
// print the gpus
|
// print the gpus
|
||||||
int gpu_iter = 0;
|
int gpu_iter = 0;
|
||||||
|
@ -188,8 +184,10 @@ void get_info() { // get all necessary info
|
||||||
FILE *os_release = fopen("/etc/os-release", "r");
|
FILE *os_release = fopen("/etc/os-release", "r");
|
||||||
FILE *cpuinfo = fopen("/proc/cpuinfo", "r");
|
FILE *cpuinfo = fopen("/proc/cpuinfo", "r");
|
||||||
if (os_release) { // get normal vars
|
if (os_release) { // get normal vars
|
||||||
while (fgets(line, sizeof(line), os_release)) if (sscanf(line, "\nID=%s", version_name)) break;
|
while (fgets(line, sizeof(line), os_release))
|
||||||
while (fgets(line, sizeof(line), cpuinfo)) if (sscanf(line, "model name : %[^\n]", cpu_model)) break;
|
if (sscanf(line, "\nID=%s", version_name)) break;
|
||||||
|
while (fgets(line, sizeof(line), cpuinfo))
|
||||||
|
if (sscanf(line, "model name : %[^\n]", cpu_model)) break;
|
||||||
sprintf(user, "%s", getenv("USER"));
|
sprintf(user, "%s", getenv("USER"));
|
||||||
fclose(os_release);
|
fclose(os_release);
|
||||||
} else { // try for android vars, or unknown system
|
} else { // try for android vars, or unknown system
|
||||||
|
@ -203,8 +201,11 @@ void get_info() { // get all necessary info
|
||||||
FILE *whoami = popen("whoami", "r");
|
FILE *whoami = popen("whoami", "r");
|
||||||
if (fscanf(whoami, "%s", user) == 3) sprintf(user, "unknown");
|
if (fscanf(whoami, "%s", user) == 3) sprintf(user, "unknown");
|
||||||
fclose(whoami);
|
fclose(whoami);
|
||||||
while (fgets(line, sizeof(line), cpuinfo)) if (sscanf(line, "Hardware : %[^\n]", cpu_model)) break;
|
while (fgets(line, sizeof(line), cpuinfo))
|
||||||
} else sprintf(version_name, "unknown");
|
if (sscanf(line, "Hardware : %[^\n]", cpu_model)) break;
|
||||||
|
} else {
|
||||||
|
sprintf(version_name, "unknown");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fclose(cpuinfo);
|
fclose(cpuinfo);
|
||||||
gethostname(host, 256);
|
gethostname(host, 256);
|
||||||
|
@ -216,20 +217,17 @@ void get_info() { // get all necessary info
|
||||||
|
|
||||||
// system resources
|
// system resources
|
||||||
uname(&sys_var);
|
uname(&sys_var);
|
||||||
sysinfo(&sys);
|
sysinfo(&sys); // somehow this function has to be called again in print_info()
|
||||||
|
|
||||||
truncate_name(sys_var.release);
|
truncate_name(sys_var.release);
|
||||||
truncate_name(sys_var.machine);
|
truncate_name(sys_var.machine);
|
||||||
|
|
||||||
// ram
|
// ram
|
||||||
|
|
||||||
|
|
||||||
FILE *meminfo;
|
FILE *meminfo;
|
||||||
|
|
||||||
meminfo = popen("LANG=EN_us free 2> /dev/null", "r");
|
meminfo = popen("LANG=EN_us free 2> /dev/null", "r");
|
||||||
while (fgets(line, sizeof(line), meminfo)) {
|
while (fgets(line, sizeof(line), meminfo)) {
|
||||||
// free command prints like this: "Mem:" total used free shared buff/cache available
|
// free command prints like this: "Mem:" total used free shared buff/cache available
|
||||||
|
|
||||||
if (sscanf(line, "Mem: %d %d", &ram_total, &ram_used)) {
|
if (sscanf(line, "Mem: %d %d", &ram_total, &ram_used)) {
|
||||||
// convert to megabytes
|
// convert to megabytes
|
||||||
if (ram_total > 0 && ram_used > 0) {
|
if (ram_total > 0 && ram_used > 0) {
|
||||||
|
@ -249,15 +247,22 @@ void get_info() { // get all necessary info
|
||||||
gpu = popen("lshw -class display 2> /dev/null", "r");
|
gpu = popen("lshw -class display 2> /dev/null", "r");
|
||||||
|
|
||||||
// add all gpus to the array gpu_model (up to 8 gpus)
|
// add all gpus to the array gpu_model (up to 8 gpus)
|
||||||
while (fgets(line, sizeof(line), gpu)) if (sscanf(line, " product: %[^\n]", gpu_model[gpun])) gpun++;
|
while (fgets(line, sizeof(line), gpu))
|
||||||
|
if (sscanf(line, " product: %[^\n]", gpu_model[gpun]))
|
||||||
|
gpun++;
|
||||||
|
|
||||||
if (strlen(gpu_model[0]) < 2) {
|
if (strlen(gpu_model[0]) < 2) {
|
||||||
// get gpus with lspci command
|
// get gpus with lspci command
|
||||||
if (strcmp(version_name, "android") != 0) gpu = popen("lspci -mm 2> /dev/null | grep \"VGA\" | cut --fields=4,6 -d '\"' --output-delimiter=\" \" | sed \"s/ Controller.*//\"", "r");
|
if (strcmp(version_name, "android") != 0) {
|
||||||
else gpu = popen("getprop ro.hardware.vulkan 2> /dev/null", "r");
|
gpu = popen("lspci -mm 2> /dev/null | grep \"VGA\" | cut --fields=4,6 -d '\"' --output-delimiter=\" \" | sed \"s/ Controller.*//\"", "r");
|
||||||
|
} else {
|
||||||
|
gpu = popen("getprop ro.hardware.vulkan 2> /dev/null", "r");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// get all the gpus
|
// get all the gpus
|
||||||
while (fgets(line, sizeof(line), gpu)) if (sscanf(line, "%[^\n]", gpu_model[gpun])) gpun++;
|
while (fgets(line, sizeof(line), gpu)) {
|
||||||
|
if (sscanf(line, "%[^\n]", gpu_model[gpun])) gpun++;
|
||||||
}
|
}
|
||||||
fclose(gpu);
|
fclose(gpu);
|
||||||
|
|
||||||
|
@ -271,19 +276,10 @@ void get_info() { // get all necessary info
|
||||||
}
|
}
|
||||||
|
|
||||||
void list(char *arg) { // prints distribution list
|
void list(char *arg) { // prints distribution list
|
||||||
/* distributions are listed by distribution branch
|
// distributions are listed by distribution branch
|
||||||
to make the output easier to understand by the user.*/
|
// to make the output easier to understand by the user.
|
||||||
printf( "%s -d <options>\n"
|
printf("%s -d <options>\n" " Available distributions:\n" " %sArch linux %sbased:\n" " %sarch, artix, %smanjaro, \"manjaro-arm\"\n\n" " %sDebian/%sUbuntu %sbased:\n" " %sdebian, %slinuxmint, %spop, %sraspbian\n\n" " %sOther/spare distributions:\n" " %salpine, %sfedora, %sgentoo, %s\"void\", android, %sunknown\n\n" " %sBSD:\n" " freebsd, %sopenbsd\n", arg,
|
||||||
" Available distributions:\n"
|
BLUE, NORMAL, BLUE, GREEN, // Arch based colors
|
||||||
" %sArch linux %sbased:\n"
|
|
||||||
" %sarch, artix, %smanjaro, \"manjaro-arm\"\n\n"
|
|
||||||
" %sDebian/%sUbuntu %sbased:\n"
|
|
||||||
" %sdebian, %slinuxmint, %spop, %sraspbian\n\n"
|
|
||||||
" %sOther/spare distributions:\n"
|
|
||||||
" %salpine, %sfedora, %sgentoo, %s\"void\", android, %sunknown\n\n"
|
|
||||||
" %sBSD:\n"
|
|
||||||
" freebsd, %sopenbsd\n",
|
|
||||||
arg, BLUE, NORMAL, BLUE, GREEN, // Arch based colors
|
|
||||||
RED, YELLOW, NORMAL, RED, GREEN, BLUE, RED, // Debian based colors
|
RED, YELLOW, NORMAL, RED, GREEN, BLUE, RED, // Debian based colors
|
||||||
NORMAL, BLUE, BLUE, PINK, GREEN, WHITE, // Other/spare distributions colors
|
NORMAL, BLUE, BLUE, PINK, GREEN, WHITE, // Other/spare distributions colors
|
||||||
RED, YELLOW); // BSD colors
|
RED, YELLOW); // BSD colors
|
||||||
|
@ -292,36 +288,30 @@ void list(char* arg) { // prints distribution list
|
||||||
void print_ascii() { // prints logo (as ascii art) of the given system. distributions listed alphabetically.
|
void print_ascii() { // prints logo (as ascii art) of the given system. distributions listed alphabetically.
|
||||||
|
|
||||||
// linux
|
// linux
|
||||||
|
|
||||||
if (strcmp(version_name, "alpine") == 0) {
|
if (strcmp(version_name, "alpine") == 0) {
|
||||||
printf("\033[2E\033[4C%s. .___.\n"
|
printf("\033[2E\033[4C%s. .___.\n"
|
||||||
" / \\/ \\ /\n"
|
" / \\/ \\ /\n"
|
||||||
" /OwO\\ɛU\\/ __\n"
|
" /OwO\\ɛU\\/ __\n"
|
||||||
" / \\ \\__/ \\\n"
|
" / \\ \\__/ \\\n" "/ \\ \\\n\n\n", BLUE);
|
||||||
"/ \\ \\\n\n\n", BLUE);
|
|
||||||
} else if (strcmp(version_name, "arch") == 0) {
|
} else if (strcmp(version_name, "arch") == 0) {
|
||||||
printf("\033[1E\033[8C%s/\\\n"
|
printf("\033[1E\033[8C%s/\\\n"
|
||||||
" / \\\n"
|
" / \\\n"
|
||||||
" /\\ \\\n"
|
" /\\ \\\n"
|
||||||
" / > w <\\\n"
|
" / > w <\\\n"
|
||||||
" / __ \\\n"
|
" / __ \\\n"
|
||||||
" / __| |__-\\\n"
|
" / __| |__-\\\n" " /_-'' ''-_\\\n\n", BLUE);
|
||||||
" /_-'' ''-_\\\n\n", BLUE);
|
|
||||||
} else if (strcmp(version_name, "artix") == 0) {
|
} else if (strcmp(version_name, "artix") == 0) {
|
||||||
printf("\033[1E\033[8C%s/\\\n"
|
printf("\033[1E\033[8C%s/\\\n"
|
||||||
" / \\\n"
|
" / \\\n"
|
||||||
" /`'.,\\\n"
|
" /`'.,\\\n"
|
||||||
" /\u2022 w \u2022 \\\n"
|
" /\u2022 w \u2022 \\\n"
|
||||||
" / ,`\\\n"
|
" / ,`\\\n"
|
||||||
" / ,.'`. \\\n"
|
" / ,.'`. \\\n" " /.,'` `'.\\\n\n", BLUE);
|
||||||
" /.,'` `'.\\\n\n", BLUE);
|
|
||||||
} else if (strcmp(version_name, "debian") == 0) {
|
} else if (strcmp(version_name, "debian") == 0) {
|
||||||
printf("\033[1E\033[6C%s______\n"
|
printf("\033[1E\033[6C%s______\n"
|
||||||
" / ___ \\\n"
|
" / ___ \\\n"
|
||||||
" | / OwO |\n"
|
" | / OwO |\n"
|
||||||
" | \\____-\n"
|
" | \\____-\n" " -_\n" " --_\n\n\n", RED);
|
||||||
" -_\n"
|
|
||||||
" --_\n\n\n", RED);
|
|
||||||
} else if (strcmp(version_name, "fedora") == 0) {
|
} else if (strcmp(version_name, "fedora") == 0) {
|
||||||
printf("\033[1E\033[8C%s_____\n"
|
printf("\033[1E\033[8C%s_____\n"
|
||||||
" / __)%s\\\n"
|
" / __)%s\\\n"
|
||||||
|
@ -330,17 +320,19 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
|
||||||
" / %s(_ _)%s_/\n"
|
" / %s(_ _)%s_/\n"
|
||||||
" / / %s| |\n"
|
" / / %s| |\n"
|
||||||
" %s\\ \\%s__/ |\n"
|
" %s\\ \\%s__/ |\n"
|
||||||
" %s\\%s(_____/\n", BLUE, CYAN, WHITE, BLUE, WHITE, CYAN, BLUE, CYAN, BLUE, CYAN, BLUE, CYAN, BLUE, CYAN, BLUE, CYAN, BLUE);
|
" %s\\%s(_____/\n", BLUE, CYAN, WHITE, BLUE, WHITE, CYAN,
|
||||||
|
BLUE, CYAN, BLUE, CYAN, BLUE, CYAN, BLUE, CYAN, BLUE, CYAN,
|
||||||
|
BLUE);
|
||||||
} else if (strcmp(version_name, "gentoo") == 0) {
|
} else if (strcmp(version_name, "gentoo") == 0) {
|
||||||
printf("\033[1E\033[3C%s_-----_\n"
|
printf("\033[1E\033[3C%s_-----_\n"
|
||||||
" ( \\\n"
|
" ( \\\n"
|
||||||
" \\ OwO \\\n"
|
" \\ OwO \\\n"
|
||||||
"%s \\ )\n"
|
"%s \\ )\n"
|
||||||
" / _/\n"
|
" / _/\n"
|
||||||
" ( _-\n"
|
" ( _-\n" " \\____-\n\n", MAGENTA, WHITE);
|
||||||
" \\____-\n\n", MAGENTA, WHITE);
|
|
||||||
} else if (strcmp(version_name, "manjaro") == 0) {
|
} else if (strcmp(version_name, "manjaro") == 0) {
|
||||||
printf( "\033[0E\033[1C\u25b3 \u25b3 \u25e0\u25e0\u25e0\u25e0\n"
|
printf
|
||||||
|
("\033[0E\033[1C\u25b3 \u25b3 \u25e0\u25e0\u25e0\u25e0\n"
|
||||||
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
" \e[0;42m \e[0m\e[0;42m\e[1;30m > w < \e[0m\e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m\e[0;42m\e[1;30m > w < \e[0m\e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
|
@ -349,7 +341,8 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
|
||||||
" \e[0;42m \e[0m \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
" \e[0;42m \e[0m \e[0;42m \e[0m \e[0;42m \e[0m\n");
|
" \e[0;42m \e[0m \e[0;42m \e[0m \e[0;42m \e[0m\n");
|
||||||
} else if (strcmp(version_name, "\"manjaro-arm\"") == 0) {
|
} else if (strcmp(version_name, "\"manjaro-arm\"") == 0) {
|
||||||
printf( "\033[0E\033[1C\u25b3 \u25b3 \u25e0\u25e0\u25e0\u25e0\n"
|
printf
|
||||||
|
("\033[0E\033[1C\u25b3 \u25b3 \u25e0\u25e0\u25e0\u25e0\n"
|
||||||
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
" \e[0;42m \e[0m\e[0;42m\e[1;30m > w < \e[0m\e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m\e[0;42m\e[1;30m > w < \e[0m\e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
" \e[0;42m \e[0m \e[0;42m \e[0m\n"
|
||||||
|
@ -363,12 +356,13 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
|
||||||
" %s, %s¯| %s| UwU| %s|\n"
|
" %s, %s¯| %s| UwU| %s|\n"
|
||||||
" %s|| %s| %s| | %s|\n"
|
" %s|| %s| %s| | %s|\n"
|
||||||
" %s | %s| %s---- %s|\n"
|
" %s | %s| %s---- %s|\n"
|
||||||
" %s --%s'--------'\n\n",GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN);
|
" %s --%s'--------'\n\n", GREEN, WHITE, GREEN, WHITE,
|
||||||
} else if (strcmp(version_name, "\"opensuse-leap\"") == 0 || strcmp(version_name, "\"opensuse-tumbleweed\"") == 0) {
|
GREEN, WHITE, GREEN, WHITE, GREEN, WHITE, GREEN, WHITE,
|
||||||
printf("\033[3E\033[3C%s|\\----/|\n"
|
GREEN, WHITE, GREEN, WHITE, GREEN);
|
||||||
" _ / %sO O%s\\\n"
|
} else if (strcmp(version_name, "\"opensuse-leap\"") == 0
|
||||||
" __. W /\n"
|
|| strcmp(version_name, "\"opensuse-tumbleweed\"") == 0) {
|
||||||
" '----'\n\n\n", GREEN, WHITE, GREEN);
|
printf("\033[3E\033[3C%s|\\----/|\n" " _ / %sO O%s\\\n"
|
||||||
|
" __. W /\n" " '----'\n\n\n", GREEN, WHITE, GREEN);
|
||||||
} else if (strcmp(version_name, "pop") == 0) {
|
} else if (strcmp(version_name, "pop") == 0) {
|
||||||
printf("\033[2E\033[6C%s|\\.-----./|\n"
|
printf("\033[2E\033[6C%s|\\.-----./|\n"
|
||||||
" |/ \\|\n"
|
" |/ \\|\n"
|
||||||
|
@ -381,15 +375,15 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
|
||||||
" (_\\)(/_)\n"
|
" (_\\)(/_)\n"
|
||||||
" %s(>(__)<)\n"
|
" %s(>(__)<)\n"
|
||||||
" (_(_)(_)_)\n"
|
" (_(_)(_)_)\n"
|
||||||
" (_(__)_)\n"
|
" (_(__)_)\n" " (__)\n\n\n", GREEN, RED);
|
||||||
" (__)\n\n\n", GREEN, RED);
|
|
||||||
} else if (strcmp(version_name, "ubuntu") == 0) {
|
} else if (strcmp(version_name, "ubuntu") == 0) {
|
||||||
printf("\033[1E\033[9C%s_\n"
|
printf("\033[1E\033[9C%s_\n"
|
||||||
" %s\u25E3%s__(_)%s\u25E2%s\n"
|
" %s\u25E3%s__(_)%s\u25E2%s\n"
|
||||||
" _/ --- \\\n"
|
" _/ --- \\\n"
|
||||||
" (_) |>w<| |\n"
|
" (_) |>w<| |\n"
|
||||||
" \\ --- _/\n"
|
" \\ --- _/\n"
|
||||||
" %sC__/%s---(_)\n\n\n", LPINK, PINK, LPINK, PINK, LPINK, PINK, LPINK);
|
" %sC__/%s---(_)\n\n\n", LPINK, PINK, LPINK, PINK, LPINK,
|
||||||
|
PINK, LPINK);
|
||||||
} else if (strcmp(version_name, "\"void\"") == 0) {
|
} else if (strcmp(version_name, "\"void\"") == 0) {
|
||||||
printf("\033[2E\033[2C%s |\\_____/|\n"
|
printf("\033[2E\033[2C%s |\\_____/|\n"
|
||||||
" _\\____ |\n"
|
" _\\____ |\n"
|
||||||
|
@ -411,8 +405,7 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
|
||||||
" \\_) (_/\n"
|
" \\_) (_/\n"
|
||||||
" | \\ / |\n"
|
" | \\ / |\n"
|
||||||
" | O w O |\n"
|
" | O w O |\n"
|
||||||
" ; ;\n"
|
" ; ;\n" " '-_____-'\n\n", RED);
|
||||||
" '-_____-'\n\n", RED);
|
|
||||||
|
|
||||||
} else if (strcmp(version_name, "openbsd") == 0) {
|
} else if (strcmp(version_name, "openbsd") == 0) {
|
||||||
printf("\033[1E\033[3C%s ______ \n"
|
printf("\033[1E\033[3C%s ______ \n"
|
||||||
|
@ -421,23 +414,27 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
|
||||||
"| %s> < %s| \n"
|
"| %s> < %s| \n"
|
||||||
"|_ < %s// %sW %s// \n"
|
"|_ < %s// %sW %s// \n"
|
||||||
"%s/ \\ / \n"
|
"%s/ \\ / \n"
|
||||||
" /-________-\\ \n\n", YELLOW, RED, YELLOW, WHITE, YELLOW, LPINK, WHITE, LPINK, YELLOW);
|
" /-________-\\ \n\n", YELLOW, RED, YELLOW, WHITE,
|
||||||
|
YELLOW, LPINK, WHITE, LPINK, YELLOW);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// everything else
|
||||||
else printf("\033[0E\033[2C%s._.--._.\n"
|
else printf("\033[0E\033[2C%s._.--._.\n"
|
||||||
" \\|>%s_%s< |/\n"
|
" \\|>%s_%s< |/\n"
|
||||||
" |%s:_/%s |\n"
|
" |%s:_/%s |\n"
|
||||||
" // \\ \\ ?\n"
|
" // \\ \\ ?\n"
|
||||||
" (| | ) /\n"
|
" (| | ) /\n"
|
||||||
" %s/'\\_ _/`\\%s-\n"
|
" %s/'\\_ _/`\\%s-\n"
|
||||||
" %s\\___)=(___/\n\n", WHITE, YELLOW, WHITE, YELLOW, WHITE, YELLOW, WHITE, YELLOW);
|
" %s\\___)=(___/\n\n", WHITE, YELLOW, WHITE, YELLOW, WHITE,
|
||||||
|
YELLOW, WHITE, YELLOW);
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_image() { // prints logo (as an image) of the given system. distributions listed alphabetically.
|
void print_image() { // prints logo (as an image) of the given system. distributions listed alphabetically.
|
||||||
char command[256];
|
char command[256];
|
||||||
if (strlen(image_name) > 1) sprintf(command, "viu -t -w 18 -h 8 %s 2> /dev/null", image_name);
|
if (strlen(image_name) > 1) {
|
||||||
else {
|
sprintf(command, "viu -t -w 18 -h 8 %s 2> /dev/null", image_name);
|
||||||
|
} else {
|
||||||
if (strcmp(version_name, "android") == 0) sprintf(command, "viu -t -w 18 -h 8 /data/data/com.termux/files/usr/lib/uwufetch/%s.png 2> /dev/null", version_name);
|
if (strcmp(version_name, "android") == 0) sprintf(command, "viu -t -w 18 -h 8 /data/data/com.termux/files/usr/lib/uwufetch/%s.png 2> /dev/null", version_name);
|
||||||
else sprintf(command, "viu -t -w 18 -h 8 /usr/lib/uwufetch/%s.png 2> /dev/null", version_name);
|
else sprintf(command, "viu -t -w 18 -h 8 /usr/lib/uwufetch/%s.png 2> /dev/null", version_name);
|
||||||
}
|
}
|
||||||
|
@ -449,8 +446,7 @@ void print_image() { // prints logo (as an image) of the given system. distribut
|
||||||
" is not installed\n"
|
" is not installed\n"
|
||||||
" or the image\n"
|
" or the image\n"
|
||||||
" is not fount\n"
|
" is not fount\n"
|
||||||
" Read IMAGES.md\n"
|
" Read IMAGES.md\n" " for more info.\n\n", RED);
|
||||||
" for more info.\n\n", RED);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -470,6 +466,7 @@ void usage(char* arg) {
|
||||||
void uwu_name() { // changes distro name to uwufied(?) name
|
void uwu_name() { // changes distro name to uwufied(?) name
|
||||||
|
|
||||||
#define STRING_TO_UWU(original, uwufied) if (strcmp(version_name, original) == 0) sprintf(version_name, "%s", uwufied)
|
#define STRING_TO_UWU(original, uwufied) if (strcmp(version_name, original) == 0) sprintf(version_name, "%s", uwufied)
|
||||||
|
|
||||||
// linux
|
// linux
|
||||||
STRING_TO_UWU("alpine", "Nyalpine");
|
STRING_TO_UWU("alpine", "Nyalpine");
|
||||||
else STRING_TO_UWU("arch", "Nyarch Linuwu");
|
else STRING_TO_UWU("arch", "Nyarch Linuwu");
|
||||||
|
@ -495,8 +492,10 @@ void uwu_name() { // changes distro name to uwufied(?) name
|
||||||
else STRING_TO_UWU("android", "Nyandroid"); // android at the end because it could be not considered as an actual distribution of gnu/linux
|
else STRING_TO_UWU("android", "Nyandroid"); // android at the end because it could be not considered as an actual distribution of gnu/linux
|
||||||
|
|
||||||
// BSD
|
// BSD
|
||||||
else STRING_TO_UWU("freebsd", "FweeBSD");
|
else STRING_TO_UWU
|
||||||
else STRING_TO_UWU("openbsd", "OwOpenBSD");
|
("freebsd", "FweeBSD");
|
||||||
|
else STRING_TO_UWU
|
||||||
|
("openbsd", "OwOpenBSD");
|
||||||
|
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
@ -516,18 +515,15 @@ void truncate_name(char* name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove square brackets (for gpu names)
|
// remove square brackets (for gpu names)
|
||||||
void remove_brackets(char *str)
|
void remove_brackets(char *str) {
|
||||||
{
|
int i = 0, j;
|
||||||
int i,j;
|
while (i < (int) strlen(str)) {
|
||||||
i = 0;
|
if (str[i] == '[' || str[i] == ']') {
|
||||||
while(i < (int)strlen(str))
|
for (j = i; j < (int) strlen(str); j++) {
|
||||||
{
|
|
||||||
if (str[i] == '[' || str[i] == ']')
|
|
||||||
{
|
|
||||||
for (j = i; j < (int)strlen(str); j++)
|
|
||||||
{
|
|
||||||
str[j] = str[j + 1];
|
str[j] = str[j + 1];
|
||||||
}
|
}
|
||||||
} else i++;
|
} else {
|
||||||
|
i++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue