aboutsummaryrefslogtreecommitdiff
path: root/quickshell/items/DataBus.qml
diff options
context:
space:
mode:
Diffstat (limited to 'quickshell/items/DataBus.qml')
-rw-r--r--quickshell/items/DataBus.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/quickshell/items/DataBus.qml b/quickshell/items/DataBus.qml
new file mode 100644
index 0000000..ef9f952
--- /dev/null
+++ b/quickshell/items/DataBus.qml
@@ -0,0 +1,23 @@
+import QtQuick
+import QtQuick.Layouts
+
+RowLayout {
+ spacing: 0
+ Text {
+ text: " Data Bus:"
+ color: shellRoot.white
+ font {
+ family: shellRoot.fontFamily
+ pixelSize: shellRoot.fontSize
+ }
+ }
+ Text {
+ text: cpuUsage
+ color: shellRoot.orange
+ font {
+ family: shellRoot.fontFamily
+ pixelSize: shellRoot.fontSize
+ bold: true
+ }
+ }
+}