From 1d904f3c41b55d48b9b5cc4176a6a0f021c0e49e Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Tue, 23 Dec 2025 19:15:11 +0100 Subject: [PATCH] Opt into Flatpak progress reporting now that we support the relevant escape sequences Sets FLATPAK_TTY_PROGRESS in the environment, cf. [1] [1] https://feaneron.com/2025/01/14/flatpak-1-16-is-out/progre --- src/session/Session.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/session/Session.cpp b/src/session/Session.cpp index 443dd07e0..ea5e17f3f 100644 --- a/src/session/Session.cpp +++ b/src/session/Session.cpp @@ -590,6 +590,8 @@ void Session::run() secretEnv << QStringLiteral("KONSOLE_DBUS_ACTIVATION_COOKIE=%1").arg(m_activationCookie); #endif + addEnvironmentEntry(QStringLiteral("FLATPAK_TTY_PROGRESS=1")); + // stuff set via addEnvironmentEntry and the secret parts const QStringList fullEnv = _environment + secretEnv;