From 0a1126c7c2edab13ca281f2ba28afd2b5a98eb30 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 20 Feb 2024 16:33:01 +0100 Subject: [PATCH] bsod: make sure "Press Any Key" has a blue background too --- src/journal/bsod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/journal/bsod.c b/src/journal/bsod.c index 046858e8a64..05c3205d447 100644 --- a/src/journal/bsod.c +++ b/src/journal/bsod.c @@ -221,7 +221,7 @@ static int display_emergency_message_fullscreen(const char *message) { if (r < 0) log_warning_errno(r, "Failed to move terminal cursor position, ignoring: %m"); - r = loop_write(fd, "Press any key to exit...", SIZE_MAX); + r = loop_write(fd, ANSI_BACKGROUND_BLUE "Press any key to exit...", SIZE_MAX); if (r < 0) { ret = log_warning_errno(r, "Failed to write to terminal: %m"); goto cleanup; -- 2.47.3