SketchyBar/plugins/cpu_user.sh
2021-08-13 23:55:43 +02:00

6 lines
238 B
Bash
Executable file

#!/usr/bin/env bash
CORE_COUNT=$(sysctl -n machdep.cpu.thread_count)
CPU_USER=$(ps -eo pcpu,user | grep $(whoami) | sed "s/[^ 0-9\.]//g" | awk "{sum+=\$1} END {print sum/(100.0 * $CORE_COUNT)}")
sketchybar -m push cpu_user 0 $CPU_USER