ncneofetch: print windows logo, detect windows

pull/2122/head
nick black 3 years ago
parent 66071a9574
commit 5c3e3017ae

@ -284,6 +284,7 @@ typedef enum {
NCNEO_FREEBSD,
NCNEO_DRAGONFLY,
NCNEO_XNU,
NCNEO_WINDOWS,
NCNEO_UNKNOWN,
} ncneo_kernel_e;
@ -309,10 +310,22 @@ get_kernel(fetched_info* fi){
fprintf(stderr, "Unknown operating system via uname: %s\n", uts.sysname);
#else
(void)fi;
return NCNEO_WINDOWS;
#endif
return NCNEO_UNKNOWN;
}
static const distro_info*
windows_ncneofetch(fetched_info* fi){
static const distro_info mswin = {
.name = "Windows",
.logofile = NULL, // FIXME
};
fi->neologo = get_neofetch_art("Windows");
fi->distro_pretty = NULL;
return &mswin;
}
static const distro_info*
freebsd_ncneofetch(fetched_info* fi){
static const distro_info fbsd = {
@ -547,7 +560,7 @@ neologo_present(struct notcurses* nc, const char* nlogo){
ncplane_putstr_aligned(n, -1, NCALIGN_CENTER, "(notcurses was compiled without image support)");
}
ncplane_off_styles(n, NCSTYLE_BOLD | NCSTYLE_ITALIC);
return 0;
return notcurses_render(nc);
}
static void*
@ -613,6 +626,9 @@ ncneofetch(struct notcurses* nc){
case NCNEO_XNU:
fi.distro = xnu_ncneofetch(&fi);
break;
case NCNEO_WINDOWS:
fi.distro = windows_ncneofetch(&fi);
break;
case NCNEO_UNKNOWN:
break;
}

Loading…
Cancel
Save