10 lines
547 B
QML
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 }
|
|
}
|