10 lines
629 B
QML
10 lines
629 B
QML
import QtQuick
|
|
|
|
BarPill {
|
|
minWidth: 115
|
|
Text { text: ""; color: Theme.blue; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
Text { text: GpuMonitor.usage + "%"; 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: GpuMonitor.temp + "°"; color: Theme.text; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
Text { text: ""; color: Theme.orange; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
}
|