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)}%` + } } }