Open the terminal app and run the following to list info about power sources (battery, mouse and other stuff) on the #Linux system:
for d in $(upower -e); do upower -i "$d" | less; done
See https://www.cyberciti.biz/faq/linux-upower-command-examples-and-syntax/ for info. #opensource #ubuntu #debian