tmux-kanagawa/scripts/cpu_info.sh
2020-06-02 22:55:14 -04:00

29 lines
444 B
Bash
Executable file

#!/usr/bin/env bash
get_percent()
{
case $(uname -s) in
Linux)
percent=$(top -bn1 | grep "Cpu(s)" | sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | awk '{print 100 - $1"%"}')
echo $percent
;;
Mac)
percent=$(ps -A -o %cpu | awk '{s+=$1} END {print s "%"}')
echo $percent
;;
Windows)
# TODO - windows compatability
;;
esac
}
main()
{
cpu_percent=$(get_percent)
echo "CPU $cpu_percent"
sleep 10
}
#run main driver
main