From 8315f766bda99aec21b2157773ee64929f027ec1 Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 20 Dec 2021 13:48:08 -0500 Subject: [PATCH] ncneofetch: add ubuntu logo path #2494 --- src/fetch/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/fetch/main.c b/src/fetch/main.c index 96f3758d4..3723daec6 100644 --- a/src/fetch/main.c +++ b/src/fetch/main.c @@ -257,6 +257,10 @@ linux_ncneofetch(fetched_info* fi){ .name = "fedora", // from redhat-lsb-core package .logofile = "/usr/share/pixmaps/fedora-logo.png", + }, { + .name = "ubuntu", + // package source? FIXME + .logofile = "/usr/share/unity/icons/launcher_bfb.png", }, { .name = NULL, .logofile = NULL, @@ -699,7 +703,7 @@ neologo_present(struct notcurses* nc, const char* nlogo){ ncplane_set_fg_default(n); ncplane_set_styles(n, NCSTYLE_BOLD | NCSTYLE_ITALIC); if(notcurses_canopen_images(nc)){ - ncplane_putstr_aligned(n, -1, NCALIGN_CENTER, "(no image file is known for your distro)\n"); + ncplane_putstr_aligned(n, -1, NCALIGN_CENTER, "(no bitmap is known for your distro)\n"); }else{ ncplane_putstr_aligned(n, -1, NCALIGN_CENTER, "(notcurses was compiled without image support)\n"); }