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 14:56:39 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-29 14:56:39 +1000
commitfa5b31292401a80484ff6f81a5b68603b3889428 (patch)
treece3470c70e2785589ef315a5c9981e445a0e05df /modules/bar/Pills.qml
parentstyle: remove unneeded comments (diff)
downloadcaelestia-shell-fa5b31292401a80484ff6f81a5b68603b3889428.tar.gz
caelestia-shell-fa5b31292401a80484ff6f81a5b68603b3889428.tar.bz2
caelestia-shell-fa5b31292401a80484ff6f81a5b68603b3889428.zip
feat: bar network icon
Diffstat (limited to 'modules/bar/Pills.qml')
-rw-r--r--modules/bar/Pills.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/bar/Pills.qml b/modules/bar/Pills.qml
index 2d6dfda..bf20f05 100644
--- a/modules/bar/Pills.qml
+++ b/modules/bar/Pills.qml
@@ -60,11 +60,23 @@ Item {
anchors.right: parent.right
Clock {
+ id: clock
+
vertical: BarConfig.vertical
anchors.horizontalCenter: root.get(undefined, parent.horizontalCenter)
anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
}
+
+ StatusIcons {
+ anchors.left: root.get(clock.right, undefined)
+ anchors.leftMargin: root.get(Appearance.padding.smaller, 0)
+ anchors.top: root.get(undefined, clock.bottom)
+ anchors.topMargin: root.get(0, Appearance.padding.smaller)
+
+ anchors.horizontalCenter: root.get(undefined, parent.horizontalCenter)
+ anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
+ }
}
}