mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-28 00:04:57 +08:00
27 lines
471 B
Bash
Executable file
27 lines
471 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#
|
|
CPU="$[100-$(vmstat 1 2|tail -1|awk '{printf "%d", $15}')]"
|
|
# GOVERNOR="$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor)"
|
|
|
|
# if [[ "$GOVERNOR" == "performance" ]]; then
|
|
# echo " $CPU%"
|
|
# else
|
|
# echo " $CPU%"
|
|
# fi
|
|
|
|
# Lazy whitespace padding
|
|
# With icon
|
|
# if [ "$CPU" -ge "10" ]; then
|
|
# echo " $CPU%"
|
|
# else
|
|
# echo " $CPU%"
|
|
# fi
|
|
|
|
# Just text
|
|
if [ "$CPU" -ge "10" ]; then
|
|
echo "cpu $CPU%"
|
|
else
|
|
echo "cpu $CPU%"
|
|
fi
|
|
|