mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-03 10:56:16 +00:00
BatteryService: implement cycleModes function
This commit is contained in:
@@ -63,6 +63,12 @@ Singleton {
|
||||
BatteryService.applyChargingMode()
|
||||
}
|
||||
|
||||
function cycleModes() {
|
||||
// Cycles charging modes from full to lifespan while skipping disabled
|
||||
const nextMode = (chargingMode % 3) + 1
|
||||
setChargingMode(nextMode)
|
||||
}
|
||||
|
||||
function applyChargingMode(hideToast = false) {
|
||||
let command = [batterySetterScript]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user