]> git.pld-linux.org Git - packages/plymouth.git/blame - text-colors.patch
- point meson as /sbin and /bin to make it embed correct paths in systemd units,...
[packages/plymouth.git] / text-colors.patch
CommitLineData
d28fae29
JB
1--- plymouth-0.9.2/src/plugins/splash/tribar/plugin.c.orig 2015-05-24 21:32:03.443625675 +0200
2+++ plymouth-0.9.2/src/plugins/splash/tribar/plugin.c 2015-05-24 21:35:09.136951216 +0200
3@@ -180,10 +180,10 @@
4 0xffffff);
5 ply_terminal_set_color_hex_value (terminal,
6 PLY_TERMINAL_COLOR_BLUE,
7- 0x0073B3);
8+ PLYMOUTH_BACKGROUND_START_COLOR);
9 ply_terminal_set_color_hex_value (terminal,
10 PLY_TERMINAL_COLOR_BROWN,
11- 0x00457E);
12+ PLYMOUTH_BACKGROUND_END_COLOR);
5090f015 13
d28fae29
JB
14 ply_text_display_set_background_color (view->display,
15 PLY_TERMINAL_COLOR_BLACK);
16--- plymouth-0.9.2/src/plugins/splash/text/plugin.c.orig 2015-05-24 21:32:03.446959010 +0200
17+++ plymouth-0.9.2/src/plugins/splash/text/plugin.c 2015-05-24 21:36:36.543614214 +0200
18@@ -171,13 +171,13 @@
612b1f77 19
d28fae29
JB
20 ply_terminal_set_color_hex_value (terminal,
21 PLY_TERMINAL_COLOR_BLACK,
22- 0x2e3436);
23+ PLYMOUTH_BACKGROUND_START_COLOR);
24 ply_terminal_set_color_hex_value (terminal,
25 PLY_TERMINAL_COLOR_WHITE,
26 0xffffff);
27 ply_terminal_set_color_hex_value (terminal,
28 PLY_TERMINAL_COLOR_BROWN,
29- 0x979a9b);
30+ PLYMOUTH_BACKGROUND_END_COLOR);
31
32 ply_text_display_set_background_color (view->display,
33 PLY_TERMINAL_COLOR_BLACK);
84120e83
JB
34--- plymouth-24.004.60/src/plugins/splash/tribar/meson.build.orig 2024-01-04 22:08:14.000000000 +0100
35+++ plymouth-24.004.60/src/plugins/splash/tribar/meson.build 2024-02-17 09:44:34.175933648 +0100
36@@ -3,6 +3,11 @@ tribar_plugin = shared_module('tribar',
37 dependencies: [
38 libply_splash_core_dep,
39 ],
40+ c_args: [
41+ '-DPLYMOUTH_BACKGROUND_COLOR=@0@'.format(get_option('background-color')),
42+ '-DPLYMOUTH_BACKGROUND_START_COLOR=@0@'.format(get_option('background-start-color-stop')),
43+ '-DPLYMOUTH_BACKGROUND_END_COLOR=@0@'.format(get_option('background-end-color-stop')),
44+ ],
45 include_directories: config_h_inc,
46 name_prefix: '',
47 install: true,
48--- plymouth-24.004.60/src/plugins/splash/text/meson.build.orig 2024-01-04 22:08:14.000000000 +0100
49+++ plymouth-24.004.60/src/plugins/splash/text/meson.build 2024-02-17 09:41:08.590380734 +0100
50@@ -4,6 +4,11 @@ text_plugin = shared_module('text',
51 libply_splash_core_dep,
52 libply_splash_graphics_dep,
53 ],
54+ c_args: [
55+ '-DPLYMOUTH_BACKGROUND_COLOR=@0@'.format(get_option('background-color')),
56+ '-DPLYMOUTH_BACKGROUND_START_COLOR=@0@'.format(get_option('background-start-color-stop')),
57+ '-DPLYMOUTH_BACKGROUND_END_COLOR=@0@'.format(get_option('background-end-color-stop')),
58+ ],
59 include_directories: config_h_inc,
60 name_prefix: '',
61 install: true,
This page took 0.156545 seconds and 5 git commands to generate.