nixos/quickshell/RamWidget.qml
2026-04-15 10:38:34 -03:00

10 lines
547 B
QML

import QtQuick
BarPill {
minWidth: 115
Text { text: "󰍛"; color: Theme.purple; font.pixelSize: Theme.fontSize; font.family: Theme.font }
Text { text: (RamMonitor.usedMb / 1024).toFixed(1) + " GB"; color: Theme.text; font.pixelSize: Theme.fontSize; font.family: Theme.font }
Text { text: "|"; color: Theme.muted; font.pixelSize: Theme.fontSize; font.family: Theme.font }
Text { text: RamMonitor.usage + "%"; color: Theme.text; font.pixelSize: Theme.fontSize; font.family: Theme.font }
}