From 7158a4ea73d1916b5a66284f26b7c40161962b0c Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 17:15:01 +0000 Subject: [PATCH] fix: stop getty@tty1.service after starting qopenhd This ensures that the console text doesn't show in the background after qopenhd is started. Co-authored-by: raphaelscholle <68374617+raphaelscholle@users.noreply.github.com> --- src/sysutil_video.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sysutil_video.cpp b/src/sysutil_video.cpp index f65f02f..428cf39 100644 --- a/src/sysutil_video.cpp +++ b/src/sysutil_video.cpp @@ -423,6 +423,7 @@ void start_qopenhd_if_needed() { if (!run_cmd("systemctl start qopenhd.service")) { std::cerr << "Failed to start qopenhd.service" << std::endl; } + run_cmd("systemctl stop getty@tty1.service"); } } // namespace