From 66f902e50c076df21107cbe9c7edcd2ac6a17fe8 Mon Sep 17 00:00:00 2001 From: Jake Weaver Date: Fri, 15 May 2026 16:02:38 -0400 Subject: [PATCH] Widen and enlarge weather popup right-side details Bump location and stat label/value font sizes a couple pixels and add breathing room between the FEELS/WIND/HUMIDITY columns. --- .../plugins/bar/widgets/weatherFlyout.qml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml b/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml index 8a218a69..e2f733cf 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml @@ -234,7 +234,7 @@ Item { id: heroRight anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter - spacing: 8 + spacing: 12 Row { visible: root.reportLocation !== "" @@ -244,14 +244,14 @@ Item { text: "" // nf-fa-map_marker color: Qt.darker(root.bar.foreground, 1.4) font.family: root.bar.fontFamily - font.pixelSize: 11 + font.pixelSize: 12 anchors.verticalCenter: parent.verticalCenter } Text { text: (root.reportLocation || "").toUpperCase() color: Qt.darker(root.bar.foreground, 1.4) font.family: root.bar.fontFamily - font.pixelSize: 11 + font.pixelSize: 12 font.letterSpacing: 1 anchors.verticalCenter: parent.verticalCenter } @@ -259,56 +259,56 @@ Item { Row { visible: !!root.current - spacing: 22 + spacing: 36 Column { - spacing: 4 + spacing: 5 Text { text: "FEELS" color: Qt.darker(root.bar.foreground, 1.5) font.family: root.bar.fontFamily - font.pixelSize: 10 + font.pixelSize: 11 font.letterSpacing: 1 } Text { text: root.reportFeels color: root.bar.foreground font.family: root.bar.fontFamily - font.pixelSize: 13 + font.pixelSize: 15 } } Column { - spacing: 4 + spacing: 5 Text { text: "WIND" color: Qt.darker(root.bar.foreground, 1.5) font.family: root.bar.fontFamily - font.pixelSize: 10 + font.pixelSize: 11 font.letterSpacing: 1 } Text { text: root.reportWind color: root.bar.foreground font.family: root.bar.fontFamily - font.pixelSize: 13 + font.pixelSize: 15 } } Column { - spacing: 4 + spacing: 5 Text { text: "HUMIDITY" color: Qt.darker(root.bar.foreground, 1.5) font.family: root.bar.fontFamily - font.pixelSize: 10 + font.pixelSize: 11 font.letterSpacing: 1 } Text { text: root.reportHumidity color: root.bar.foreground font.family: root.bar.fontFamily - font.pixelSize: 13 + font.pixelSize: 15 } } }