From eeb7f25eb6bc10f7bc059431a9451c2301706b67 Mon Sep 17 00:00:00 2001 From: Tarik02 Date: Mon, 13 Apr 2026 17:29:41 +0300 Subject: [PATCH 1/3] fix invalid titlebar color string --- apps/desktop/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index fa0ad50da4..5ff352abd1 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -120,7 +120,7 @@ const DESKTOP_UPDATE_ALLOW_PRERELEASE = false; const DESKTOP_LOOPBACK_HOST = "127.0.0.1"; const DESKTOP_REQUIRED_PORT_PROBE_HOSTS = ["0.0.0.0", "::"] as const; const TITLEBAR_HEIGHT = 40; -const TITLEBAR_COLOR = "#01000000"; // #00000000 does not work correctly on Linux +const TITLEBAR_COLOR = "rgba(0,0,0,0)"; const TITLEBAR_LIGHT_SYMBOL_COLOR = "#1f2937"; const TITLEBAR_DARK_SYMBOL_COLOR = "#f8fafc"; From 5b39fbfd95a4d3a2f8f06633ef077e0182faf452 Mon Sep 17 00:00:00 2001 From: Tarik02 Date: Mon, 13 Apr 2026 18:42:45 +0300 Subject: [PATCH 2/3] upd --- apps/desktop/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index 5ff352abd1..e20d3a0216 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -120,7 +120,7 @@ const DESKTOP_UPDATE_ALLOW_PRERELEASE = false; const DESKTOP_LOOPBACK_HOST = "127.0.0.1"; const DESKTOP_REQUIRED_PORT_PROBE_HOSTS = ["0.0.0.0", "::"] as const; const TITLEBAR_HEIGHT = 40; -const TITLEBAR_COLOR = "rgba(0,0,0,0)"; +const TITLEBAR_COLOR = "rgba(1,0,0,0)"; // rgba(1,0,0,0) does not work correctly on Linux (falls back to default color) const TITLEBAR_LIGHT_SYMBOL_COLOR = "#1f2937"; const TITLEBAR_DARK_SYMBOL_COLOR = "#f8fafc"; From d4799420b2a0637af688f77c7620a18b76a3cfe6 Mon Sep 17 00:00:00 2001 From: Tarik02 Date: Mon, 13 Apr 2026 18:42:56 +0300 Subject: [PATCH 3/3] upd --- apps/desktop/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index e20d3a0216..989d888329 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -120,7 +120,7 @@ const DESKTOP_UPDATE_ALLOW_PRERELEASE = false; const DESKTOP_LOOPBACK_HOST = "127.0.0.1"; const DESKTOP_REQUIRED_PORT_PROBE_HOSTS = ["0.0.0.0", "::"] as const; const TITLEBAR_HEIGHT = 40; -const TITLEBAR_COLOR = "rgba(1,0,0,0)"; // rgba(1,0,0,0) does not work correctly on Linux (falls back to default color) +const TITLEBAR_COLOR = "rgba(1,0,0,0)"; // rgba(0,0,0,0) does not work correctly on Linux (falls back to default color) const TITLEBAR_LIGHT_SYMBOL_COLOR = "#1f2937"; const TITLEBAR_DARK_SYMBOL_COLOR = "#f8fafc";