10 lines
185 B
QML
10 lines
185 B
QML
import "../config"
|
|
import "../services"
|
|
|
|
MetricPill {
|
|
icon: Icons.memory
|
|
iconColor: Theme.loadColor(SysStats.mem)
|
|
value: SysStats.mem.toFixed(0) + "%"
|
|
reserve: "100%"
|
|
}
|