diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2025-12-08 16:58:52 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2025-12-08 16:58:52 +0530 |
| commit | af844bbc44741a971614175248cc29505d1acbd1 (patch) | |
| tree | d75c8dc30e7f0f0596b5f087ad3697678a042e3e /quickshell/items/Latch.qml | |
| parent | 15bed9293ad7fb0b54cef68cdbf1a0549ec7aa97 (diff) | |
replaced wofi with custom app menu + right side apps bar + organization of qml files
Diffstat (limited to 'quickshell/items/Latch.qml')
| -rw-r--r-- | quickshell/items/Latch.qml | 23 |
1 files changed, 23 insertions, 0 deletions
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 + } + } +} |
