jarvis-cloud / modules /context.py
Jarvis2345's picture
Upload folder using huggingface_hub
2dae9bb verified
Raw
History Blame Contribute Delete
316 Bytes
import psutil
def battery_status():
try:
b = psutil.sensors_battery()
if not b:
return ""
if b.power_plugged:
return "Charger connected."
if b.percent < 25:
return "Battery low."
except:
return ""
return ""