tmux-kanagawa/scripts/cpu_info.sh
2020-06-01 19:27:15 -04:00

53 lines
693 B
Bash
Executable file

#!/usr/bin/env bash
get_percent()
{
arg=$1
case "$arg" 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
}
check_os()
{
# Check os
case $(uname -s) in
Linux)
get_percent Linux
;;
Darwin)
get_percent Mac
;;
CYGWIN*|MINGW32*|MSYS*|MINGW*)
get_percent Windows
# leaving empty - TODO - windows compatability
;;
*)
;;
esac
}
main()
{
cpu_percent=$(check_os)
echo "CPU $cpu_percent"
sleep 10
}
#run main driver
main