windows/freebsd: add logos

This commit is contained in:
nick black 2021-11-25 15:06:15 -05:00 committed by nick black
parent f992a55b2d
commit 198d3b5f19
2 changed files with 4 additions and 4 deletions

BIN
data/Windows10Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -413,20 +413,20 @@ get_kernel(fetched_info* fi){
// windows distro_pretty gets handled in get_kernel() above
static const distro_info*
windows_ncneofetch(fetched_info* fi){
static const distro_info mswin = {
static distro_info mswin = {
.name = "Windows",
.logofile = NULL, // FIXME
};
mswin.logofile = find_data("Windows10Logo.png"),
fi->neologo = get_neofetch_art("Windows");
return &mswin;
}
static const distro_info*
freebsd_ncneofetch(fetched_info* fi){
static const distro_info fbsd = {
static distro_info fbsd = {
.name = "FreeBSD",
.logofile = "freebsd.png",
};
fbsd.logofile = find_data("freebsd.png"),
fi->neologo = get_neofetch_art("BSD"); // use big daemon logo
fi->distro_pretty = NULL;
return &fbsd;