6 lines
174 B
Plaintext
6 lines
174 B
Plaintext
|
#!/bin/bash
|
||
|
print_cpu() {
|
||
|
cpuUse=$(top -bn1 | grep "Cpu(s)" | sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | awk '{print int(100 - $1)"%"}')
|
||
|
echo -e "💻 $cpuUse"
|
||
|
}
|
||
|
print_cpu
|