From ca7d6c8ae0ded1b5678c0baeb55f5503bcc69ef2 Mon Sep 17 00:00:00 2001 From: EinBowser <146022965+EinBowser@users.noreply.github.com> Date: Sat, 1 Nov 2025 22:11:39 +0100 Subject: [PATCH] Added config toggle to settings --- .../quickshell/ii/modules/settings/GeneralConfig.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dots/.config/quickshell/ii/modules/settings/GeneralConfig.qml b/dots/.config/quickshell/ii/modules/settings/GeneralConfig.qml index c2ea1f930..3be552b9c 100644 --- a/dots/.config/quickshell/ii/modules/settings/GeneralConfig.qml +++ b/dots/.config/quickshell/ii/modules/settings/GeneralConfig.qml @@ -127,6 +127,14 @@ ContentPage { } } } + ConfigSwitch { + buttonIcon: "healing" + text: Translation.tr('Show battery health in popup') + checked: Config.options.battery.showHealth + onCheckedChanged: { + Config.options.battery.showHealth = checked; + } + } } ContentSection {