←back to thread

700 points yen223 | 1 comments | | HN request time: 0.227s | source
Show context
Bengalilol ◴[] No.42061389[source]
There is also pmset which is very useful (since macOS doesn't give a UI counterpart) https://support.apple.com/en-am/guide/mac-help/mchl40376151/...
replies(3): >>42061522 #>>42062169 #>>42063173 #
1. jftuga ◴[] No.42062169[source]
I have this .zshrc function to track the battery and charging, which uses pmset:

    function batt-info() {
        echo
        system_profiler SPPowerDataType | grep Wattage | cut -c 7-
        echo
        pmset -g batt
    }