Add always show battery percentage option

This commit is contained in:
Ly-sec 2025-08-21 12:57:54 +02:00
parent 02e246ab8d
commit ae5fada790
4 changed files with 45 additions and 10 deletions

View file

@ -132,6 +132,15 @@ ColumnLayout {
}
}
NToggle {
label: "Always show battery percentage"
description: "Show battery percentage at all times (otherwise only when charging or low)."
checked: Settings.data.bar.alwaysShowBatteryPercentage
onToggled: checked => {
Settings.data.bar.alwaysShowBatteryPercentage = checked
}
}
ColumnLayout {
spacing: Style.marginXXS * scaling
Layout.fillWidth: true