The network panel now summons it, so a clone or a third-party plugin declaring clonedFrom: omarchy.speedtest can replace the whole speed test -- dials and run orchestration alike -- for every caller. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
547 lines
17 KiB
QML
547 lines
17 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Shapes
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Wayland
|
|
import qs.Commons
|
|
import qs.Ui
|
|
|
|
// Centered speed test overlay. No card: like the Tucson's floating cluster,
|
|
// the two dials (download left, upload right) sit directly on a darkened
|
|
// scrim -- open 270° arcs, faint tick rings, hubless gradient needles, and a
|
|
// digital readout in the middle. Esc, the scrim, or the corner dismiss close
|
|
// it; the needles sweep to full scale and back on open, then track the live
|
|
// readings.
|
|
//
|
|
// Standalone panel plugin: summoning it starts a fresh run, dismissing it
|
|
// stops the traffic, so the download workers never keep saturating the link
|
|
// behind a closed overlay. The payload may carry the connection's display
|
|
// name -- {"connection": "MyWifi"} -- and the panel looks it up itself via
|
|
// omarchy-network-status when the caller doesn't know it.
|
|
Item {
|
|
id: root
|
|
|
|
property string omarchyPath: Quickshell.env("OMARCHY_PATH")
|
|
property var shell: null
|
|
property var manifest: null
|
|
|
|
property bool opened: false
|
|
property string connectionName: ""
|
|
|
|
property bool running: false
|
|
property bool expectedStop: false
|
|
property bool pendingRun: false
|
|
property string phase: "" // "down" | "up" | ""
|
|
property string stderrText: ""
|
|
property string downloadMbps: ""
|
|
property string uploadMbps: ""
|
|
property string error: ""
|
|
|
|
readonly property real downloadValue: toMbps(downloadMbps)
|
|
readonly property real uploadValue: toMbps(uploadMbps)
|
|
readonly property bool failed: error !== ""
|
|
|
|
// The scrim below is a fixed near-black regardless of theme, so text and
|
|
// ticks on it need a fixed light palette, not the themed foreground.
|
|
readonly property color onScrim: "white"
|
|
readonly property color onScrimDim: Qt.rgba(1, 1, 1, 0.55)
|
|
readonly property color onScrimUrgent: "#ff6b6b"
|
|
readonly property string fontFamily: Style.font.family
|
|
|
|
function toMbps(raw) {
|
|
var value = parseFloat(raw)
|
|
return isFinite(value) && value > 0 ? value : 0
|
|
}
|
|
|
|
function open(payloadJson) {
|
|
var payload = {}
|
|
try { payload = JSON.parse(payloadJson || "{}") || {} } catch (e) {}
|
|
if (payload.connection !== undefined) root.connectionName = String(payload.connection)
|
|
else refreshConnectionName()
|
|
root.opened = true
|
|
runSpeedTest()
|
|
// The window is instantiated hidden, so re-acquire focus after mapping
|
|
// and fire the ignition sweep once the surface is actually on screen.
|
|
Qt.callLater(function() {
|
|
if (!root.opened) return
|
|
keyCatcher.forceActiveFocus()
|
|
downDial.ignite()
|
|
upDial.ignite()
|
|
})
|
|
}
|
|
|
|
function close() {
|
|
root.opened = false
|
|
root.pendingRun = false
|
|
phaseTimer.stop()
|
|
// Clear the phase before killing the process: onExited advances to the
|
|
// upload phase when it still reads "down".
|
|
root.phase = ""
|
|
root.running = false
|
|
if (speedTestProc.running) {
|
|
root.expectedStop = true
|
|
speedTestProc.running = false
|
|
}
|
|
}
|
|
|
|
function dismiss() {
|
|
if (root.shell && typeof root.shell.hide === "function")
|
|
root.shell.hide((root.manifest && root.manifest.id) || "omarchy.speedtest")
|
|
else close()
|
|
}
|
|
|
|
function refreshConnectionName() {
|
|
root.connectionName = ""
|
|
statusProc.running = false
|
|
statusProc.running = true
|
|
}
|
|
|
|
function updateSpeedTestLine(line) {
|
|
var value = parseFloat(line)
|
|
if (!isFinite(value) || value < 0) return
|
|
|
|
if (phase === "down") downloadMbps = String(value)
|
|
else if (phase === "up") uploadMbps = String(value)
|
|
error = ""
|
|
}
|
|
|
|
function runSpeedTest() {
|
|
if (speedTestProc.running) {
|
|
// A dismissal's SIGTERM is still in flight; Process.running stays true
|
|
// until the child exits, so queue the fresh run for onExited.
|
|
if (expectedStop) pendingRun = true
|
|
return
|
|
}
|
|
error = ""
|
|
downloadMbps = ""
|
|
uploadMbps = ""
|
|
running = true
|
|
startPhase("down")
|
|
}
|
|
|
|
function startPhase(nextPhase) {
|
|
expectedStop = false
|
|
phase = nextPhase
|
|
stderrText = ""
|
|
speedTestProc.command = ["omarchy-network-speedtest", nextPhase]
|
|
speedTestProc.running = true
|
|
phaseTimer.restart()
|
|
}
|
|
|
|
function stopPhase() {
|
|
phaseTimer.stop()
|
|
if (speedTestProc.running) {
|
|
expectedStop = true
|
|
speedTestProc.running = false
|
|
return
|
|
}
|
|
finishPhase()
|
|
}
|
|
|
|
function finishPhase() {
|
|
if (phase === "down") {
|
|
startPhase("up")
|
|
return
|
|
}
|
|
|
|
phase = ""
|
|
running = false
|
|
expectedStop = false
|
|
}
|
|
|
|
Process {
|
|
id: speedTestProc
|
|
stdout: SplitParser { onRead: function(line) { root.updateSpeedTestLine(line) } }
|
|
stderr: StdioCollector {
|
|
waitForEnd: true
|
|
onStreamFinished: root.stderrText = String(text || "").trim()
|
|
}
|
|
onExited: function(exitCode) {
|
|
phaseTimer.stop()
|
|
|
|
if (root.pendingRun) {
|
|
root.pendingRun = false
|
|
root.expectedStop = false
|
|
if (root.opened) Qt.callLater(root.runSpeedTest)
|
|
return
|
|
}
|
|
|
|
if (!root.expectedStop && exitCode !== 0) {
|
|
root.error = root.stderrText || "Speed test failed"
|
|
root.phase = ""
|
|
root.running = false
|
|
return
|
|
}
|
|
|
|
root.expectedStop = false
|
|
root.finishPhase()
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: phaseTimer
|
|
interval: 5000
|
|
repeat: false
|
|
onTriggered: root.stopPhase()
|
|
}
|
|
|
|
// Names the connection under test when the summoner didn't. First tab
|
|
// field is the kind, second the SSID (wifi) or device (ethernet).
|
|
Process {
|
|
id: statusProc
|
|
command: ["omarchy-network-status"]
|
|
stdout: StdioCollector {
|
|
waitForEnd: true
|
|
onStreamFinished: {
|
|
var fields = String(text || "").trim().split("\t")
|
|
if (fields[0] === "wifi") root.connectionName = fields[1] || "Wi-Fi"
|
|
else if (fields[0] === "ethernet") root.connectionName = "Ethernet"
|
|
}
|
|
}
|
|
}
|
|
|
|
PanelWindow {
|
|
visible: root.opened
|
|
anchors { top: true; bottom: true; left: true; right: true }
|
|
color: "transparent"
|
|
exclusionMode: ExclusionMode.Ignore
|
|
WlrLayershell.namespace: "omarchy-network-speedtest"
|
|
WlrLayershell.layer: WlrLayer.Overlay
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive
|
|
|
|
// Deep scrim: with no card behind them, the floating dials need the
|
|
// backdrop to carry the contrast on any wallpaper, like the near-black
|
|
// panel behind a real cluster.
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: Qt.rgba(0, 0, 0, 0.78)
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: root.dismiss()
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: keyCatcher
|
|
anchors.fill: parent
|
|
focus: true
|
|
|
|
Keys.onEscapePressed: root.dismiss()
|
|
Keys.onReturnPressed: if (!root.running) root.runSpeedTest()
|
|
Keys.onEnterPressed: if (!root.running) root.runSpeedTest()
|
|
|
|
Item {
|
|
id: cluster
|
|
anchors.centerIn: parent
|
|
width: content.implicitWidth
|
|
height: content.implicitHeight
|
|
// Narrow or heavily scaled outputs: shrink the whole cluster rather
|
|
// than clipping it at the screen edge.
|
|
scale: Math.min(1,
|
|
(keyCatcher.width - Style.space(32)) / Math.max(1, width),
|
|
(keyCatcher.height - Style.space(32)) / Math.max(1, height))
|
|
|
|
// Swallow clicks so only the scrim outside the cluster dismisses.
|
|
MouseArea { anchors.fill: parent; onClicked: {} }
|
|
|
|
ColumnLayout {
|
|
id: content
|
|
anchors.fill: parent
|
|
spacing: Style.space(16)
|
|
|
|
Text {
|
|
visible: root.connectionName !== ""
|
|
text: root.connectionName.toUpperCase()
|
|
color: root.onScrimDim
|
|
font.family: root.fontFamily
|
|
font.pixelSize: Style.font.caption
|
|
font.bold: true
|
|
font.letterSpacing: 2
|
|
Layout.fillWidth: true
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
|
|
Row {
|
|
spacing: Style.space(48)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
SpeedDial {
|
|
id: downDial
|
|
label: "DOWNLOAD"
|
|
value: root.downloadValue
|
|
live: root.running && root.phase === "down"
|
|
}
|
|
|
|
SpeedDial {
|
|
id: upDial
|
|
label: "UPLOAD"
|
|
value: root.uploadValue
|
|
live: root.running && root.phase === "up"
|
|
}
|
|
}
|
|
|
|
// Centered on the dial pair. Fades rather than unmounts while a run
|
|
// is in flight, so the cluster never shifts.
|
|
Button {
|
|
text: "Run Again"
|
|
tooltipText: "Measure again via fast.com"
|
|
bordered: true
|
|
enabled: !root.running
|
|
opacity: root.running ? 0 : 1
|
|
foreground: root.onScrim
|
|
fontFamily: root.fontFamily
|
|
fontSize: Style.font.bodySmall
|
|
horizontalPadding: Style.space(14)
|
|
verticalPadding: Style.space(4)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
onClicked: root.runSpeedTest()
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation { duration: 240; easing.type: Easing.OutCubic }
|
|
}
|
|
}
|
|
|
|
Text {
|
|
visible: root.failed
|
|
text: root.error
|
|
color: root.onScrimUrgent
|
|
font.family: root.fontFamily
|
|
font.pixelSize: Style.font.bodySmall
|
|
wrapMode: Text.Wrap
|
|
Layout.fillWidth: true
|
|
Layout.maximumWidth: Style.space(440)
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// One floating cluster dial: an open 270° scale with the gap at the
|
|
// bottom, a faint tick ring, a glowing accent value arc, a hubless needle
|
|
// that fades toward the pivot, and a digital readout in the middle. All
|
|
// writes to the needle funnel through `shown` so the ignition sweep and
|
|
// live readings share one animation.
|
|
component SpeedDial: Item {
|
|
id: dial
|
|
|
|
required property string label
|
|
required property real value
|
|
required property bool live
|
|
|
|
readonly property real diameter: Style.space(210)
|
|
// 0° = 3 o'clock, increasing clockwise (PathAngleArc's convention).
|
|
readonly property real dialStart: 135
|
|
readonly property real dialSweep: 270
|
|
readonly property int tickCount: 46
|
|
readonly property real arcWidth: Style.space(4)
|
|
readonly property real arcRadius: diameter / 2 - arcWidth
|
|
readonly property color trackColor: Qt.rgba(1, 1, 1, 0.14)
|
|
readonly property color minorTickColor: Qt.rgba(1, 1, 1, 0.12)
|
|
readonly property color majorTickColor: Qt.rgba(1, 1, 1, 0.3)
|
|
// The dial that isn't measuring yet sits dimmed until it gets a figure.
|
|
readonly property bool engaged: live || value > 0
|
|
|
|
property real shown: 0
|
|
// The digital readout stays on the real figure while the ignition sweep
|
|
// drives the needle -- a cluster sweeps its gauges, not its numerals.
|
|
readonly property real reading: ignition.running ? value : shown
|
|
property real fullScale: 100
|
|
readonly property var scaleStops: [100, 250, 500, 1000, 2500, 5000, 10000]
|
|
readonly property real fraction: fullScale > 0 ? Math.max(0, Math.min(1, shown / fullScale)) : 0
|
|
readonly property bool arcVisible: fraction > 0.004
|
|
|
|
width: diameter
|
|
height: diameter
|
|
opacity: engaged ? 1 : 0.5
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation { duration: 240; easing.type: Easing.OutCubic }
|
|
}
|
|
|
|
// Live readings land once a second; glide between them rather than snap.
|
|
Behavior on shown {
|
|
enabled: !ignition.running
|
|
NumberAnimation { duration: 600; easing.type: Easing.OutCubic }
|
|
}
|
|
|
|
Behavior on fullScale {
|
|
enabled: !ignition.running
|
|
NumberAnimation { duration: 400; easing.type: Easing.OutCubic }
|
|
}
|
|
|
|
// A fresh measurement re-ranges from the base scale. Without this, one
|
|
// unusually fast run would compress every later one for the lifetime of
|
|
// the shell process.
|
|
onLiveChanged: {
|
|
if (live) fullScale = scaleStops[0]
|
|
}
|
|
|
|
onValueChanged: {
|
|
// Latch the scale upward to the next stop when a reading approaches the
|
|
// rim. Never shrink mid-run; a fresh run just re-sweeps from zero.
|
|
for (var i = 0; i < scaleStops.length; i++) {
|
|
if (value <= scaleStops[i] * 0.92) {
|
|
if (scaleStops[i] > fullScale) fullScale = scaleStops[i]
|
|
break
|
|
}
|
|
if (i === scaleStops.length - 1) fullScale = scaleStops[i]
|
|
}
|
|
if (!ignition.running) shown = value
|
|
}
|
|
|
|
function ignite() {
|
|
ignition.restart()
|
|
}
|
|
|
|
// Car-cluster power-on: needle sweeps to full scale and falls back before
|
|
// the live figures take over.
|
|
SequentialAnimation {
|
|
id: ignition
|
|
NumberAnimation { target: dial; property: "shown"; to: dial.fullScale; duration: 550; easing.type: Easing.InOutCubic }
|
|
NumberAnimation { target: dial; property: "shown"; to: 0; duration: 650; easing.type: Easing.OutCubic }
|
|
onFinished: dial.shown = dial.value
|
|
}
|
|
|
|
Shape {
|
|
anchors.fill: parent
|
|
preferredRendererType: Shape.CurveRenderer
|
|
|
|
// Track: the full scale, always visible, dim.
|
|
ShapePath {
|
|
strokeWidth: dial.arcWidth
|
|
strokeColor: dial.trackColor
|
|
fillColor: "transparent"
|
|
capStyle: ShapePath.RoundCap
|
|
|
|
PathAngleArc {
|
|
centerX: dial.width / 2
|
|
centerY: dial.height / 2
|
|
radiusX: dial.arcRadius
|
|
radiusY: dial.arcRadius
|
|
startAngle: dial.dialStart
|
|
sweepAngle: dial.dialSweep
|
|
}
|
|
}
|
|
|
|
// Soft under-glow beneath the value arc, standing in for the backlit
|
|
// ring of a real cluster. Both arcs go transparent at rest, or their
|
|
// round caps would leave a stray dot at the foot of the scale.
|
|
ShapePath {
|
|
strokeWidth: dial.arcWidth * 3
|
|
strokeColor: dial.arcVisible ? Qt.rgba(Color.accent.r, Color.accent.g, Color.accent.b, 0.18) : "transparent"
|
|
fillColor: "transparent"
|
|
capStyle: ShapePath.RoundCap
|
|
|
|
PathAngleArc {
|
|
centerX: dial.width / 2
|
|
centerY: dial.height / 2
|
|
radiusX: dial.arcRadius
|
|
radiusY: dial.arcRadius
|
|
startAngle: dial.dialStart
|
|
sweepAngle: dial.dialSweep * dial.fraction
|
|
}
|
|
}
|
|
|
|
// Value: fills behind the needle.
|
|
ShapePath {
|
|
strokeWidth: dial.arcWidth
|
|
strokeColor: dial.arcVisible ? Color.accent : "transparent"
|
|
fillColor: "transparent"
|
|
capStyle: ShapePath.RoundCap
|
|
|
|
PathAngleArc {
|
|
centerX: dial.width / 2
|
|
centerY: dial.height / 2
|
|
radiusX: dial.arcRadius
|
|
radiusY: dial.arcRadius
|
|
startAngle: dial.dialStart
|
|
sweepAngle: dial.dialSweep * dial.fraction
|
|
}
|
|
}
|
|
}
|
|
|
|
// Faint tick ring just inside the arc; every fifth tick is a major.
|
|
Repeater {
|
|
model: dial.tickCount
|
|
|
|
Item {
|
|
required property int index
|
|
readonly property bool major: index % 5 === 0
|
|
|
|
anchors.fill: parent
|
|
rotation: dial.dialStart + (index / (dial.tickCount - 1)) * dial.dialSweep - 270
|
|
|
|
Rectangle {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: dial.arcWidth * 2 + (parent.major ? 0 : Style.space(2))
|
|
width: parent.major ? Math.max(2, Style.space(2)) : 1
|
|
height: parent.major ? Style.space(10) : Style.space(6)
|
|
radius: width / 2
|
|
color: parent.major ? dial.majorTickColor : dial.minorTickColor
|
|
}
|
|
}
|
|
}
|
|
|
|
// Hubless needle: a slender sliver that fades out toward the pivot, so
|
|
// it reads as floating like the rest of the cluster.
|
|
Item {
|
|
anchors.fill: parent
|
|
rotation: dial.dialStart + dial.fraction * dial.dialSweep - 270
|
|
|
|
Rectangle {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: dial.arcWidth * 2 + Style.space(10)
|
|
width: Math.max(2, Style.space(3))
|
|
height: dial.diameter * 0.32
|
|
radius: width / 2
|
|
|
|
gradient: Gradient {
|
|
GradientStop { position: 0.0; color: Color.accent }
|
|
GradientStop { position: 0.55; color: Color.accent }
|
|
GradientStop { position: 1.0; color: "transparent" }
|
|
}
|
|
}
|
|
}
|
|
|
|
Column {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.top: parent.verticalCenter
|
|
anchors.topMargin: Style.space(14)
|
|
spacing: 0
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: dial.reading < 10 ? dial.reading.toFixed(1) : Math.round(dial.reading).toString()
|
|
color: root.onScrim
|
|
font.family: root.fontFamily
|
|
font.pixelSize: Style.font.display
|
|
font.bold: true
|
|
}
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: "Mbps"
|
|
color: root.onScrimDim
|
|
font.family: root.fontFamily
|
|
font.pixelSize: Style.font.caption
|
|
}
|
|
}
|
|
|
|
// The 90° gap at the bottom of the scale is where a cluster prints its
|
|
// unit; here it names the direction.
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottom: parent.bottom
|
|
text: dial.label
|
|
color: root.onScrimDim
|
|
font.family: root.fontFamily
|
|
font.pixelSize: Style.font.caption
|
|
font.bold: true
|
|
font.letterSpacing: 1.5
|
|
}
|
|
}
|
|
}
|