You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
236 B
8 lines
236 B
#!/bin/bash
|
|
|
|
. "/home/kevin/.cache/wal/colors.sh"
|
|
|
|
idle="$(mpstat 1 1 -P ALL | sed -n -e '4{p;q}' | awk '{print $NF}')"
|
|
used=$(echo 100 - "$idle" | bc)
|
|
used_rounded=$(printf %.0f "$used")
|
|
printf "%s%%\n\n%s\n" "$used_rounded" "$color7"
|