mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
76 lines
1.6 KiB
Plaintext
76 lines
1.6 KiB
Plaintext
using Gtk 4.0;
|
|
|
|
template $GpuStatsSection: $PageSection {
|
|
name: "Statistics";
|
|
spacing: 10;
|
|
|
|
Box {
|
|
orientation: horizontal;
|
|
spacing: 5;
|
|
|
|
Label {
|
|
label: "VRAM Usage:";
|
|
}
|
|
|
|
Overlay {
|
|
LevelBar vram_usage_bar {
|
|
hexpand: true;
|
|
value: bind template.vram-usage;
|
|
orientation: horizontal;
|
|
}
|
|
|
|
[overlay]
|
|
Label vram_usage_label {
|
|
label: bind template.vram-usage-text;
|
|
}
|
|
}
|
|
}
|
|
|
|
Box {
|
|
orientation: horizontal;
|
|
spacing: 10;
|
|
|
|
Box {
|
|
orientation: vertical;
|
|
hexpand: true;
|
|
spacing: 5;
|
|
|
|
$InfoRow {
|
|
name: "GPU Core Clock:";
|
|
value: bind template.core-clock;
|
|
}
|
|
|
|
$InfoRow {
|
|
name: "GPU Voltage:";
|
|
value: bind template.voltage;
|
|
}
|
|
|
|
$InfoRow {
|
|
name: "GPU Temperature (hotspot):";
|
|
value: bind template.temperature;
|
|
}
|
|
}
|
|
|
|
Box {
|
|
orientation: vertical;
|
|
hexpand: true;
|
|
spacing: 5;
|
|
|
|
$InfoRow {
|
|
name: "GPU Memory Clock:";
|
|
value: bind template.vram-clock;
|
|
}
|
|
|
|
$InfoRow {
|
|
name: "GPU Usage:";
|
|
value: bind template.gpu-usage;
|
|
}
|
|
|
|
$InfoRow {
|
|
name: "Power Usage:";
|
|
value: bind template.power-usage;
|
|
}
|
|
}
|
|
}
|
|
}
|