From d54df2792ad8536ea2e4135fba3bb3558e281fe1 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 1 May 2025 00:56:55 +1000 Subject: feat: bar panel preset Make presets more flexible Fix workspaces when show windows disabled Make rounded option for workspaces --- modules/bar/components/Tray.qml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'modules/bar/components/Tray.qml') diff --git a/modules/bar/components/Tray.qml b/modules/bar/components/Tray.qml index 2ce5cdc..98a7dfe 100644 --- a/modules/bar/components/Tray.qml +++ b/modules/bar/components/Tray.qml @@ -1,8 +1,13 @@ import "root:/widgets" +import "root:/config" import Quickshell.Services.SystemTray import QtQuick StyledRect { + id: root + + property color colour: Appearance.colours.lavender + animate: true clip: true visible: width > 0 && height > 0 // To avoid warnings about being visible with no size @@ -11,7 +16,9 @@ StyledRect { Repeater { model: SystemTray.items - TrayItem {} + TrayItem { + colour: root.colour + } } } } -- cgit v1.2.3-freya