From 96429160c30ba5f6dcd25c8e6a181221195c41d8 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 15 Jun 2025 18:08:45 +1000 Subject: feat: user config file Config file at `~/.config/caelestia/shell.json` --- modules/drawers/Border.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/drawers/Border.qml') diff --git a/modules/drawers/Border.qml b/modules/drawers/Border.qml index 9014d07..62dc277 100644 --- a/modules/drawers/Border.qml +++ b/modules/drawers/Border.qml @@ -16,7 +16,7 @@ Item { id: rect anchors.fill: parent - color: Colours.alpha(BorderConfig.colour, false) + color: Colours.alpha(Config.border.colour, false) visible: false } @@ -29,9 +29,9 @@ Item { Rectangle { anchors.fill: parent - anchors.margins: BorderConfig.thickness + anchors.margins: Config.border.thickness anchors.leftMargin: root.bar.implicitWidth - radius: BorderConfig.rounding + radius: Config.border.rounding } } -- cgit v1.2.3-freya