diff options
Diffstat (limited to 'modules/bar/components/Tray.qml')
| -rw-r--r-- | modules/bar/components/Tray.qml | 9 |
1 files changed, 8 insertions, 1 deletions
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 + } } } } |