summaryrefslogtreecommitdiff
path: root/modules/BatteryMonitor.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-09 17:54:16 -0500
committerATMDA <atdma2600@gmail.com>2025-11-09 17:54:16 -0500
commit5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52 (patch)
tree778ac9244f74c4100eee1bc6ee76b86e033d21b2 /modules/BatteryMonitor.qml
parent[CI] chore: update flake (diff)
downloadcaelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.tar.gz
caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.tar.bz2
caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.zip
controlcenter: network and audio panels
Diffstat (limited to 'modules/BatteryMonitor.qml')
-rw-r--r--modules/BatteryMonitor.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/BatteryMonitor.qml b/modules/BatteryMonitor.qml
index d24cff2..7a3be12 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 discharging"), "power_off");
+ Toaster.toast(qsTr("Charger unplugged"), qsTr("Battery is now on AC"), "power_off");
} else {
if (Config.utilities.toasts.chargingChanged)
Toaster.toast(qsTr("Charger plugged in"), qsTr("Battery is charging"), "power");