Hello folks, is there a tool in Linux to track how much current the battery is pulling during charging? In Android there is Ampere that does this, and I’m looking for something similar. This nicely shows for example that my Android device is charging the battery with 1.5A right now.
Pro tip: Add an alias for it into your
.bashrc
to nicely view battery level in TTY. In my case I didalias battery='upower -i /org/freedesktop/UPower/devices/battery_BAT1 | grep -wE "percentage:|time to empty:|state:|energy:|energy-rate:|voltage:"
which shows me this:Direct image link
very nice, thanks!