summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/logo/colors.h2
-rw-r--r--src/logo/sunos.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/logo/colors.h b/src/logo/colors.h
index de481b0..8d773b2 100644
--- a/src/logo/colors.h
+++ b/src/logo/colors.h
@@ -1,7 +1,7 @@
#ifndef LOGO_COLORS_H
#define LOGO_COLORS_H
-#if defined(__OpenBSD__) || defined(__linux__)
+#if defined(__OpenBSD__) || defined(__linux__) || defined(__sun)
#define MIN_SIZE 15
#else
#define MIN_SIZE 14
diff --git a/src/logo/sunos.c b/src/logo/sunos.c
index d57825e..25d65e7 100644
--- a/src/logo/sunos.c
+++ b/src/logo/sunos.c
@@ -25,7 +25,7 @@ void getDistro(const char *distroname) {
if (strncmp((char *)distroname, "omnios", strlen("omnios")) == 0) {
color = YELLOW;
titlecolor = GREY;
- logosize = 12;
+ logosize = 13;
LOGO[0] = GREY " ###### " RESET;
LOGO[1] = GREY " ### ### " RESET;
@@ -39,6 +39,9 @@ void getDistro(const char *distroname) {
LOGO[9] = YELLOW " ## ## " RESET;
LOGO[10] = YELLOW " ### ### " RESET;
LOGO[11] = YELLOW " ###### " RESET;
+ for (size_t i = 12; i < logosize; i++) {
+ LOGO[i] = YELLOW " " RESET;
+ }
LOGO_SMALL[0] = GREY " __ " RESET;
LOGO_SMALL[1] = GREY " / \\ " RESET;