A second shell chrome under dotfiles/quickshell/hyprchrome, built around a BarPanel that carries TWO renderings of its data: the default children are the expanded detail view, `summary` the terse one shown while collapsed. Both stay bound to the same sources, so the densities cannot disagree, and the panel cross-fades between them while its height animates. Panels: HostPanel (hostname, user, timezone, clock), VitalsPanel (CPU load and temperature, memory, GPU load and temperature, all metered), TrayPanel (system tray, self-sizing). HyprChromeBar pins them to DP-2 and owns `expanded` for the whole rail — SUPER A, via GlobalShortcut "chrome". GPU busy comes off sysfs rather than the node_exporter scrape VitalsData already does: the hwmon collector carries the card's temps, power and clocks but not its utilisation. The bar's height binds to each panel's `targetHeight` — where it will settle, not where the animation currently is — because the exclusive zone is window-sized by default, and binding to the animated height relayouts every tiled window on the output twelve times per toggle. The zone follows the target immediately so the desktop reflows once, at the start; the surface itself shrinks only after the panels finish, or it would clip them mid-animation. DebugWindow stages a widget in the middle of the secondary monitor (SUPER CTRL D), masked so only the staged widget takes pointer input. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HEtXvseVb5gwAtKNhFx2PU
143 lines
4.3 KiB
QML
143 lines
4.3 KiB
QML
pragma ComponentBehavior: Bound
|
||
|
||
import QtQuick
|
||
import QtQuick.Layouts
|
||
|
||
import qs.hyprchrome.theme
|
||
import qs.hyprchrome.widgets.panels
|
||
import qs.widgets.vitals
|
||
|
||
// Host vitals in the hyprchrome panel chrome, in both of BarPanel's densities.
|
||
//
|
||
// Expanded: CPU load and temperature, memory usage, GPU load and temperature,
|
||
// each as a segmented meter with its readout.
|
||
// Collapsed: the same five numbers as percentages behind Nerd Font glyphs.
|
||
//
|
||
// Both bodies read the same properties below, so the two densities cannot
|
||
// disagree — they are one set of numbers rendered twice.
|
||
//
|
||
// The scrape comes from the shared VitalsData (node_exporter over loopback);
|
||
// GPU busy is the one reading that scrape does not carry, so it comes off
|
||
// sysfs through GpuBusy.
|
||
BarPanel {
|
||
id: panel
|
||
|
||
panelId: "MON"
|
||
title: "RESOURCE MONITOR"
|
||
meta: vitals.failed ? "OFFLINE" : vitals.ready ? "REALTIME" : "PRIMING"
|
||
|
||
// Poll only while the panel exists on screen; both sources idle otherwise.
|
||
property bool polling: true
|
||
|
||
// Temperatures are metered against a 0–100 °C span so a bar means the same
|
||
// thing on every row.
|
||
readonly property real tempCeiling: 100
|
||
|
||
readonly property real memoryFraction: vitals.memTotal > 0 ? vitals.memUsed / vitals.memTotal : 0
|
||
readonly property bool cpuTempReady: isFinite(vitals.cpuTemp)
|
||
readonly property bool gpuTempReady: isFinite(vitals.gpuTemp)
|
||
|
||
function pct(value, ready) {
|
||
return ready ? Math.round(Math.max(0, Math.min(1, value)) * 100) + "%" : "--";
|
||
}
|
||
|
||
function tempFraction(celsius) {
|
||
return isFinite(celsius) ? Math.max(0, Math.min(1, celsius / panel.tempCeiling)) : 0;
|
||
}
|
||
|
||
VitalsData {
|
||
id: vitals
|
||
active: panel.polling
|
||
}
|
||
|
||
GpuBusy {
|
||
id: gpu
|
||
active: panel.polling
|
||
}
|
||
|
||
// Collapsed: glyph + percentage, in the same order as the rows below.
|
||
// Codepoints are Nerd Fonts v3 — oct-cpu, fa-thermometer-half,
|
||
// md-memory, md-expansion-card-variant — all present in DepartureMono.
|
||
summary: RowLayout {
|
||
spacing: 12
|
||
|
||
Item { Layout.fillWidth: true }
|
||
Readout { icon: "CPU:"; value: panel.pct(vitals.cpu, vitals.ratesReady) }
|
||
Readout { icon: "CPU Temp:"; value: vitals.fmtTemp(vitals.cpuTemp) }
|
||
Readout { icon: "Mem:"; value: panel.pct(panel.memoryFraction, vitals.ready) }
|
||
Readout { icon: "GPU:"; value: panel.pct(gpu.value, gpu.ready) }
|
||
Readout { icon: "GPU Temp:"; value: vitals.fmtTemp(vitals.gpuTemp) }
|
||
Item { Layout.fillWidth: true }
|
||
}
|
||
|
||
// Expanded: the same five, metered.
|
||
Column {
|
||
width: parent.width
|
||
spacing: 5
|
||
|
||
VitalRow {
|
||
width: parent.width
|
||
label: "CPU"
|
||
value: vitals.cpu
|
||
ready: vitals.ratesReady && !vitals.failed
|
||
readout: panel.pct(vitals.cpu, vitals.ratesReady)
|
||
}
|
||
|
||
VitalRow {
|
||
width: parent.width
|
||
label: "CPU TMP"
|
||
value: panel.tempFraction(vitals.cpuTemp)
|
||
ready: panel.cpuTempReady
|
||
readout: vitals.fmtTemp(vitals.cpuTemp)
|
||
warn: 0.85
|
||
}
|
||
|
||
VitalRow {
|
||
width: parent.width
|
||
label: "MEM"
|
||
value: panel.memoryFraction
|
||
ready: vitals.ready && !vitals.failed
|
||
readout: panel.pct(panel.memoryFraction, vitals.ready)
|
||
}
|
||
|
||
VitalRow {
|
||
width: parent.width
|
||
label: "GPU"
|
||
value: gpu.value
|
||
ready: gpu.ready
|
||
readout: panel.pct(gpu.value, gpu.ready)
|
||
}
|
||
|
||
VitalRow {
|
||
width: parent.width
|
||
label: "GPU TMP"
|
||
value: panel.tempFraction(vitals.gpuTemp)
|
||
ready: panel.gpuTempReady
|
||
readout: vitals.fmtTemp(vitals.gpuTemp)
|
||
warn: 0.85
|
||
}
|
||
}
|
||
|
||
component Readout: Row {
|
||
property string icon: ""
|
||
property string value: "--"
|
||
|
||
spacing: 4
|
||
|
||
Text {
|
||
text: parent.icon
|
||
color: Theme.accent
|
||
font.family: Theme.displayFont
|
||
font.pixelSize: 12
|
||
}
|
||
|
||
Text {
|
||
text: parent.value
|
||
color: Theme.text
|
||
font.family: Theme.displayFont
|
||
font.pixelSize: 12
|
||
font.bold: true
|
||
}
|
||
}
|
||
}
|