From the 2026-06-15 on-box hardware test (all 6 prior fixes confirmed; these are the new findings, baked into the fork source rather than shipped as pacman-hook patches, per the Phase-2 "we own the shell" approach): - F-W1 (Weather.qml): fetch at startup. Stock only called reload() on a config CHANGE, so a saved location blanked after reboot and an empty/auto location never populated on a fresh boot. Add Component.onCompleted: reload() and switch the hourly Timer to reload() (re-detects auto/IP too). - F-W3 (Weather.qml): 7-day forecast showed "undefined°" in °F mode — only maxTempC/minTempC were stored. Store rounded maxTempF/minTempF (and round °C). - F-W2 (Weather.qml): empty/auto-IP location never populated — the in-shell ipinfo.io fetch didn't set loc (provider-specific; the city path works via the same Requests.get). Repair attempt: defensive JSON parse + error callback + fallback to geojs.io. Compiled Requests module not inspectable, so this is best-effort; a saved city still works regardless. - F-D1a (modules/dashboard/*.qml): square the 25 card radii bound to the compiled Tokens.rounding.* Material defaults (which ignore shell.json rounding.scale=0) so the dashboard matches the square redesign. - F-D1b (Glyphs.qml): remap the weather glyphs to the Material-weather family (every codepoint verified present in JetBrainsMono Nerd Font Mono); the old Font-Awesome codepoints were absent (rendered "?") and thunderstorm / snowing_heavy were unmapped. - F-T1 (NsBar.qml): gate the system-tray pill on SystemTray.items count so it only shows when an app registers a tray icon (was opening an empty panel). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
135 lines
4 KiB
QML
135 lines
4 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import Caelestia.Config
|
|
import Caelestia.Services
|
|
import qs.components
|
|
import qs.components.controls
|
|
import qs.services
|
|
|
|
StyledRect {
|
|
id: root
|
|
|
|
readonly property color accent: Colours.palette.m3secondary
|
|
readonly property real percentage: Storage.primaryDisk?.perc ?? 0
|
|
|
|
color: Colours.tPalette.m3surfaceContainer
|
|
radius: 0 // nosignal: square dashboard cards to match the redesign (F-D1)
|
|
|
|
implicitWidth: layout.implicitWidth + layout.anchors.margins * 2
|
|
implicitHeight: layout.implicitHeight + Tokens.padding.large * 2
|
|
|
|
ServiceRef {
|
|
service: Storage
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: layout
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.margins: Tokens.padding.extraLarge
|
|
spacing: 0
|
|
|
|
RowLayout {
|
|
id: row
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
spacing: Tokens.spacing.large
|
|
|
|
CircularProgress {
|
|
fgColour: root.accent
|
|
value: root.percentage
|
|
implicitSize: usageColumn.implicitHeight + thickness + Tokens.padding.large * 2
|
|
startAngle: -225
|
|
sweepAngle: 270
|
|
|
|
Behavior on clampedVal {
|
|
Anim {}
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: usageColumn
|
|
|
|
anchors.centerIn: parent
|
|
spacing: 0
|
|
|
|
NsIcon {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
icon: "hard_drive"
|
|
color: root.accent
|
|
fontStyle: Tokens.font.icon.medium
|
|
}
|
|
|
|
StyledText {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
text: Math.round(root.percentage * 100) + "%"
|
|
font: Tokens.font.title.builders.large.width(90).build()
|
|
color: root.accent
|
|
}
|
|
|
|
StyledText {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
text: qsTr("Used")
|
|
font: Tokens.font.body.small
|
|
color: Colours.palette.m3onSurfaceVariant
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.minimumWidth: Tokens.sizes.dashboard.perfStorageTextWidth
|
|
spacing: Tokens.spacing.extraSmall
|
|
|
|
StyledText {
|
|
text: qsTr("Storage")
|
|
font: Tokens.font.title.medium
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
if (!Storage.primaryDisk)
|
|
return qsTr("No disks detected");
|
|
|
|
const fmt = UsageFmt.formatKib(Storage.primaryDisk.used, Storage.primaryDisk.total);
|
|
return `${fmt.value.toFixed(1)} / ${Math.floor(fmt.total)} ${fmt.unit}`;
|
|
}
|
|
font: Tokens.font.body.large
|
|
color: root.accent
|
|
}
|
|
}
|
|
}
|
|
|
|
SplitButton {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
type: SplitButton.Tonal
|
|
disabled: !Storage.disks.length
|
|
fallbackIcon: "storage"
|
|
fallbackText: qsTr("No disks")
|
|
menuOnTop: true
|
|
minLeftWidth: row.implicitWidth * 0.6
|
|
|
|
menuItems: disks.instances
|
|
active: menuItems.find(m => m.modelData === Storage.primaryDisk) ?? menuItems[0] ?? null
|
|
menu.onItemSelected: item => Storage.manualPrimaryDisk = (item as DiskItem).modelData
|
|
|
|
Variants {
|
|
id: disks
|
|
|
|
model: Storage.disks
|
|
|
|
DiskItem {}
|
|
}
|
|
}
|
|
}
|
|
|
|
component DiskItem: MenuItem {
|
|
required property var modelData
|
|
|
|
icon: modelData === Storage.primaryDisk ? "check" : ""
|
|
text: modelData.mount
|
|
activeIcon: "storage"
|
|
}
|
|
}
|