commit b78cf0a28af45e1c5370029883c47d34736333b9 parent 510ba083427a0d8dfbb381476da566a106e674bd Author: mrgrouse <mrgrouse@mrgrouse.com> Date: Mon, 2 Sep 2024 01:41:48 -0400 vconsole.conf: use 'strip' filter to remove '#'s before every hex color entry for mkinitcpio-colors Diffstat:
| M | templates/vconsole.conf | | | 32 | ++++++++++++++++---------------- |
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/templates/vconsole.conf b/templates/vconsole.conf @@ -1,17 +1,17 @@ KEYMAP=us -COLOR_0={{color0}} -COLOR_1={{color1}} -COLOR_2={{color2}} -COLOR_3={{color3}} -COLOR_4={{color4}} -COLOR_5={{color5}} -COLOR_6={{color6}} -COLOR_7={{color7}} -COLOR_8={{color8}} -COLOR_9={{color9}} -COLOR_10={{color10}} -COLOR_11={{color11}} -COLOR_12={{color12}} -COLOR_13={{color13}} -COLOR_14={{color14}} -COLOR_15={{color15}} +COLOR_0={{color0 | strip}} +COLOR_1={{color1 | strip}} +COLOR_2={{color2 | strip}} +COLOR_3={{color3 | strip}} +COLOR_4={{color4 | strip}} +COLOR_5={{color5 | strip}} +COLOR_6={{color6 | strip}} +COLOR_7={{color7 | strip}} +COLOR_8={{color8 | strip}} +COLOR_9={{color9 | strip}} +COLOR_10={{color10 | strip}} +COLOR_11={{color11 | strip}} +COLOR_12={{color12 | strip}} +COLOR_13={{color13 | strip}} +COLOR_14={{color14 | strip}} +COLOR_15={{color15 | strip}}