summaryrefslogtreecommitdiff
path: root/modules/bar/components/Tray.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 00:56:55 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 00:56:55 +1000
commitd54df2792ad8536ea2e4135fba3bb3558e281fe1 (patch)
tree22445e7f85a5c4e9e84a337f4676c97e4550905e /modules/bar/components/Tray.qml
parentdev: fix run script (diff)
downloadcaelestia-shell-d54df2792ad8536ea2e4135fba3bb3558e281fe1.tar.gz
caelestia-shell-d54df2792ad8536ea2e4135fba3bb3558e281fe1.tar.bz2
caelestia-shell-d54df2792ad8536ea2e4135fba3bb3558e281fe1.zip
feat: bar panel preset
Make presets more flexible Fix workspaces when show windows disabled Make rounded option for workspaces
Diffstat (limited to 'modules/bar/components/Tray.qml')
-rw-r--r--modules/bar/components/Tray.qml9
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
+ }
}
}
}