diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-09 19:10:11 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-09 19:10:11 -0500 |
| commit | f1234bc96705b7f5bd35f2c1e5cfd532712f6f86 (patch) | |
| tree | fca4947a47f33d5499d3d6180f4c5b710bc16eee /modules/BatteryMonitor.qml | |
| parent | config: settings in bar (diff) | |
| download | caelestia-shell-f1234bc96705b7f5bd35f2c1e5cfd532712f6f86.tar.gz caelestia-shell-f1234bc96705b7f5bd35f2c1e5cfd532712f6f86.tar.bz2 caelestia-shell-f1234bc96705b7f5bd35f2c1e5cfd532712f6f86.zip | |
fix: window title while keeping new panels
modified: config/BarConfig.qml
modified: modules/BatteryMonitor.qml
modified: modules/background/DesktopClock.qml
modified: modules/bar/Bar.qml
modified: modules/controlcenter/WindowFactory.qml
modified: modules/controlcenter/WindowTitle.qml
Diffstat (limited to 'modules/BatteryMonitor.qml')
| -rw-r--r-- | modules/BatteryMonitor.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/BatteryMonitor.qml b/modules/BatteryMonitor.qml index 7a3be12..d24cff2 100644 --- a/modules/BatteryMonitor.qml +++ b/modules/BatteryMonitor.qml @@ -15,7 +15,7 @@ Scope { function onOnBatteryChanged(): void { if (UPower.onBattery) { if (Config.utilities.toasts.chargingChanged) - Toaster.toast(qsTr("Charger unplugged"), qsTr("Battery is now on AC"), "power_off"); + Toaster.toast(qsTr("Charger unplugged"), qsTr("Battery is discharging"), "power_off"); } else { if (Config.utilities.toasts.chargingChanged) Toaster.toast(qsTr("Charger plugged in"), qsTr("Battery is charging"), "power"); |