Skip to content

Instantly share code, notes, and snippets.

View nrnw's full-sized avatar

Niuru nrnw

View GitHub Profile
@mateosss
mateosss / power.py
Last active October 27, 2024 17:44
Shows laptop power usage in realtime
#!/usr/bin/python3
from time import time, sleep
from pathlib import Path
itime = time()
totcurrent = 0
totvoltage = 0
totpower = 0
samples = 0