From af844bbc44741a971614175248cc29505d1acbd1 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Mon, 8 Dec 2025 16:58:52 +0530 Subject: replaced wofi with custom app menu + right side apps bar + organization of qml files --- quickshell/items/Latch.qml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 quickshell/items/Latch.qml (limited to 'quickshell/items/Latch.qml') diff --git a/quickshell/items/Latch.qml b/quickshell/items/Latch.qml new file mode 100644 index 0000000..5cc6487 --- /dev/null +++ b/quickshell/items/Latch.qml @@ -0,0 +1,23 @@ +import QtQuick +import QtQuick.Layouts + +RowLayout { + spacing: 0 + Text { + text: " Latch:" + color: shellRoot.white + font { + family: shellRoot.fontFamily + pixelSize: shellRoot.fontSize + } + } + Text { + text: memUsage + color: shellRoot.orange + font { + family: shellRoot.fontFamily + pixelSize: shellRoot.fontSize + bold: true + } + } +} -- cgit v1.2.3