summaryrefslogtreecommitdiffstats
path: root/.local/bin/status/sb-cpu
blob: 2504428fd52c3caf8ee3e7f200bf0604968d0518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

ncpu=$(sysctl -n hw.ncpu)
ncpu=$((ncpu - 1))
cpu=""
printf "  "
w | head -n1 | awk '{print $8}' | cut -d',' -f1
# for i in $(seq 0 $ncpu); do
# 	case $(sysctl -n dev.cpu.$i.cx_usage | cut -d'.' -f1 | awk '{printf "%d\n", $1 / 12.5}') in
# 		"0") printf "▁";;
# 		"1") printf "▂";;
# 		"2") printf "▃";;
# 		"3") printf "▄";;
# 		"4") printf "▅";;
# 		"5") printf "▆";;
# 		"6") printf "▇";;
# 		"7") printf "█";;
# 		"8") printf "█";;
# 	esac;
# done