15ac6b59a5
- Ship /etc/os-release in the initrd so that the pretty name is displayed in text-splash mode - Give the text-splash some SUSE-typical green coloring OBS-URL: https://build.opensuse.org/request/show/129223 OBS-URL: https://build.opensuse.org/package/show/Base:System/plymouth?expand=0&rev=72
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
From 9e69959ad2d7624936832421dfb0cd1fee47fefc Mon Sep 17 00:00:00 2001
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: Sun, 29 Jul 2012 20:38:50 +0200
|
|
Subject: [PATCH] Some greenish openSUSE colors
|
|
|
|
---
|
|
src/plugins/splash/text/plugin.c | 6 +++---
|
|
1 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/plugins/splash/text/plugin.c b/src/plugins/splash/text/plugin.c
|
|
index 50059be..d9235c5 100644
|
|
--- a/src/plugins/splash/text/plugin.c
|
|
+++ b/src/plugins/splash/text/plugin.c
|
|
@@ -180,13 +180,13 @@ view_start_animation (view_t *view)
|
|
0x000000);
|
|
ply_terminal_set_color_hex_value (terminal,
|
|
PLY_TERMINAL_COLOR_WHITE,
|
|
- 0xffffff);
|
|
+ 0x40ff00);
|
|
ply_terminal_set_color_hex_value (terminal,
|
|
PLY_TERMINAL_COLOR_BLUE,
|
|
- 0x0073B3);
|
|
+ 0x20a000);
|
|
ply_terminal_set_color_hex_value (terminal,
|
|
PLY_TERMINAL_COLOR_BROWN,
|
|
- 0x00457E);
|
|
+ 0x106000);
|
|
|
|
ply_text_display_set_background_color (view->display,
|
|
PLY_TERMINAL_COLOR_BLACK);
|
|
--
|
|
1.7.7
|
|
|