71 lines
2.0 KiB
QML
71 lines
2.0 KiB
QML
import Quickshell
|
|
import Quickshell.Services.UPower
|
|
import QtQuick
|
|
import ZShell
|
|
import qs.Config
|
|
import qs.Components.Toast
|
|
import qs.Helpers
|
|
|
|
Scope {
|
|
id: root
|
|
|
|
readonly property list<var> popupThresholds: [...Config.general.battery.popupThresholds].sort((a, b) => b.perc - a.perc)
|
|
|
|
function nearestThresholdAbove(p: real): var {
|
|
const thresholds = [...root.popupThresholds];
|
|
for (const perc of thresholds) {
|
|
if (p < perc.perc)
|
|
return perc;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
Connections {
|
|
function onOnBatteryChanged(): void {
|
|
if (!Battery.ready)
|
|
return;
|
|
|
|
if (Battery.onBattery) {
|
|
if (Config.utilities.toasts.chargingChanged)
|
|
Toaster.toast(qsTr("Charger unplugged"), qsTr("Battery is discharging"), "power_off");
|
|
const p = Battery.currentPerc * 100;
|
|
const perc = root.nearestThresholdAbove(p);
|
|
if (perc)
|
|
Toaster.toast(perc.title ?? qsTr("Battery warning"), perc.message ?? qsTr("Battery is low"), perc.icon ?? "battery_android_alert", perc.critical ? Toast.Error : Toast.Warning);
|
|
} else {
|
|
if (Config.utilities.toasts.chargingChanged)
|
|
Toaster.toast(qsTr("Charger plugged in"), qsTr("Battery is charging"), "power");
|
|
}
|
|
}
|
|
|
|
target: Battery
|
|
}
|
|
|
|
Connections {
|
|
function onCurrentPercChanged(): void {
|
|
if (!Battery.onBattery)
|
|
return;
|
|
|
|
const p = Battery.currentPerc * 100;
|
|
for (const perc of root.popupThresholds) {
|
|
if (p == perc.perc) {
|
|
Toaster.toast(perc.title ?? qsTr("Battery warning"), perc.message ?? qsTr("Battery perc is low"), perc.icon ?? "battery_android_alert", perc.critical ? Toast.Error : Toast.Warning);
|
|
}
|
|
}
|
|
}
|
|
|
|
function onReadyChanged(): void {
|
|
if (!Battery.ready)
|
|
return;
|
|
|
|
const p = Battery.currentPerc * 100;
|
|
const perc = root.nearestThresholdAbove(p);
|
|
if (perc)
|
|
Toaster.toast(perc.title ?? qsTr("Battery warning"), perc.message ?? qsTr("Battery is low"), perc.icon ?? "battery_android_alert", perc.critical ? Toast.Error : Toast.Warning);
|
|
}
|
|
|
|
target: Battery
|
|
}
|
|
}
|