diff options
| author | senkun <senkun@protonmail.ch> | 2025-11-07 00:46:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 03:46:23 +1100 |
| commit | 83bf3386a6d0604a53ea87c0704ce225cc9151d0 (patch) | |
| tree | 927c5b0fcc9f314a9caff671f4dd1b86fae5905f | |
| parent | nix: `system` -> `pkgs.stdenv.hostPlatform.system` (#880) (diff) | |
| download | caelestia-shell-83bf3386a6d0604a53ea87c0704ce225cc9151d0.tar.gz caelestia-shell-83bf3386a6d0604a53ea87c0704ce225cc9151d0.tar.bz2 caelestia-shell-83bf3386a6d0604a53ea87c0704ce225cc9151d0.zip | |
batterymon : fix toast text for charger unplugged (#887)
| -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"); |