From 6afe810d69ab63264169bf315ddf0fdb28ce7c6f Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 6 Nov 2025 23:04:42 +0100 Subject: [PATCH] batterypopup: move health to below energy rate --- .../quickshell/ii/modules/bar/BatteryPopup.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/bar/BatteryPopup.qml b/dots/.config/quickshell/ii/modules/bar/BatteryPopup.qml index 9e3dc49bd..26eda569e 100644 --- a/dots/.config/quickshell/ii/modules/bar/BatteryPopup.qml +++ b/dots/.config/quickshell/ii/modules/bar/BatteryPopup.qml @@ -42,12 +42,6 @@ StyledPopup { } } - StyledPopupValueRow { - icon: "heart_check" - label: Translation.tr("Health:") - value: `${(Battery.health).toFixed(1)}%` - } - StyledPopupValueRow { visible: !(Battery.chargeState != 4 && Battery.energyRate == 0) icon: "bolt" @@ -68,5 +62,11 @@ StyledPopup { } } } + + StyledPopupValueRow { + icon: "heart_check" + label: Translation.tr("Health:") + value: `${(Battery.health).toFixed(1)}%` + } } }