summaryrefslogtreecommitdiff
path: root/modules/bar/Pills.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-29 19:57:07 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-29 19:57:07 +1000
commitae878e390fef99c6e7867b97fced78567e058ad0 (patch)
tree15bf235fa19c9ed0aaf121c064d3215cb8db9506 /modules/bar/Pills.qml
parentfeat: bar bluetooth devices (diff)
downloadcaelestia-shell-ae878e390fef99c6e7867b97fced78567e058ad0.tar.gz
caelestia-shell-ae878e390fef99c6e7867b97fced78567e058ad0.tar.bz2
caelestia-shell-ae878e390fef99c6e7867b97fced78567e058ad0.zip
feat: bar system tray
Diffstat (limited to 'modules/bar/Pills.qml')
-rw-r--r--modules/bar/Pills.qml16
1 files changed, 15 insertions, 1 deletions
diff --git a/modules/bar/Pills.qml b/modules/bar/Pills.qml
index 042e9c1..f608549 100644
--- a/modules/bar/Pills.qml
+++ b/modules/bar/Pills.qml
@@ -68,7 +68,11 @@ Item {
anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
}
- StatusIcons {
+ Tray {
+ id: tray
+
+ vertical: BarConfig.vertical
+
anchors.left: root.get(clock.right, undefined)
anchors.leftMargin: root.get(Appearance.padding.large, 0)
anchors.top: root.get(undefined, clock.bottom)
@@ -77,6 +81,16 @@ Item {
anchors.horizontalCenter: root.get(undefined, parent.horizontalCenter)
anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
}
+
+ StatusIcons {
+ anchors.left: root.get(tray.right, undefined)
+ anchors.leftMargin: root.get(Appearance.padding.normal, 0)
+ anchors.top: root.get(undefined, tray.bottom)
+ anchors.topMargin: root.get(0, Appearance.padding.large)
+
+ anchors.horizontalCenter: root.get(undefined, parent.horizontalCenter)
+ anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
+ }
}
}