From ee7bc373bb3eb22e6b73c611141578d13f052df7 Mon Sep 17 00:00:00 2001 From: SomeElse Date: Mon, 27 Apr 2026 07:42:03 +0000 Subject: [PATCH] added frameBorder and added a fallback to borderPopup to support older themes --- config/themes/goldencity.qml | 3 ++- shell.qml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/themes/goldencity.qml b/config/themes/goldencity.qml index 6693e46..f33f9e2 100644 --- a/config/themes/goldencity.qml +++ b/config/themes/goldencity.qml @@ -25,7 +25,8 @@ QtObject { // ── Accent & Borders ────────────────────────────────────────────────────── readonly property color accent: "#ffc19375" // Warm hazy horizon gold readonly property color border: "transparent" - readonly property color borderPopup: "transparent" // Slate blue border + readonly property color frameBorder: "transparent" + readonly property color borderPopup: "transparent" readonly property color borderToday: accent // ── ArchLogo Module ──────────────────────────────────────────────────────── diff --git a/shell.qml b/shell.qml index 6380421..69f416f 100644 --- a/shell.qml +++ b/shell.qml @@ -15,7 +15,7 @@ ShellRoot { readonly property bool isTop: Cfg.Config.barPosition === "top" property color frameBackground: Cfg.Config.theme.bgFrame - property color frameBorderColor: Cfg.Config.theme.borderPopup + property color frameBorderColor: Cfg.Config.theme.frameBorder ?? Cfg.Config.theme.borderPopup // ── Spacing Gap: Top / Bottom ──────────────────────────────────────── Variants {