lux-shell/modules/bar/components/Memory.qml
2025-09-05 22:41:21 -04:00

24 lines
385 B
QML

import qs.components
import qs.config
import qs.services
import qs.utils
import QtQuick
import QtQuick.Layouts
StyledLabel {
RowLayout {
Ref {
service: SystemInfo
}
LucideIcon {
text: Styling.lucide.icons.memoryStick
}
StyledText {
text: ` ${(SystemInfo.memPerc * 100).toFixed()}%`
}
}
}