2022-08-09 06:28:35 +05:30
|
|
|
#!/usr/bin/env bash
|
2024-03-17 04:00:27 +05:30
|
|
|
|
2022-08-09 06:28:35 +05:30
|
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
|
|
2023-03-29 14:52:27 +05:30
|
|
|
current_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
2022-08-13 17:11:48 +05:30
|
|
|
source "$current_dir"/utils.sh
|
2022-08-09 06:28:35 +05:30
|
|
|
|
2023-03-29 14:52:27 +05:30
|
|
|
get_percent() {
|
|
|
|
|
case $(uname -s) in
|
2022-08-09 06:28:35 +05:30
|
|
|
Linux)
|
2023-03-29 14:52:27 +05:30
|
|
|
percent=$(LC_NUMERIC=en_US.UTF-8 top -bn2 -d 0.01 | grep "Cpu(s)" | tail -1 | sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | awk '{print 100 - $1"%"}')
|
2024-03-17 04:00:27 +05:30
|
|
|
normalize_padding "$percent"
|
2023-03-29 14:52:27 +05:30
|
|
|
;;
|
2022-08-09 06:28:35 +05:30
|
|
|
|
|
|
|
|
Darwin)
|
2023-03-29 14:52:27 +05:30
|
|
|
cpuvalue=$(ps -A -o %cpu | awk -F. '{s+=$1} END {print s}')
|
|
|
|
|
cpucores=$(sysctl -n hw.logicalcpu)
|
|
|
|
|
cpuusage=$((cpuvalue / cpucores))
|
|
|
|
|
percent="$cpuusage%"
|
2024-03-17 04:00:27 +05:30
|
|
|
normalize_padding $percent
|
2023-03-29 14:52:27 +05:30
|
|
|
;;
|
|
|
|
|
|
2024-03-17 04:00:27 +05:30
|
|
|
CYGWIN* | MINGW32* | MSYS* | MINGW*) ;; # TODO - windows compatibility
|
2023-03-29 14:52:27 +05:30
|
|
|
esac
|
2022-08-09 06:28:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get_load() {
|
2023-03-29 14:52:27 +05:30
|
|
|
case $(uname -s) in
|
|
|
|
|
Linux | Darwin)
|
|
|
|
|
loadavg=$(uptime | awk -F'[a-z]:' '{ print $2}' | sed 's/,//g')
|
|
|
|
|
echo "$loadavg"
|
|
|
|
|
;;
|
|
|
|
|
|
2024-03-17 04:00:27 +05:30
|
|
|
CYGWIN* | MINGW32* | MSYS* | MINGW*) ;; # TODO - windows compatibility
|
2023-03-29 14:52:27 +05:30
|
|
|
esac
|
2022-08-09 06:28:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main() {
|
2023-03-29 14:52:27 +05:30
|
|
|
RATE=$(get_tmux_option "@tmux2k-refresh-rate" 5)
|
|
|
|
|
cpu_load=$(get_tmux_option "@tmux2k-cpu-display-load" false)
|
|
|
|
|
if [ "$cpu_load" = true ]; then
|
|
|
|
|
echo "$(get_load)"
|
|
|
|
|
else
|
|
|
|
|
cpu_label=$(get_tmux_option "@tmux2k-cpu-usage-label" "")
|
|
|
|
|
cpu_percent=$(get_percent)
|
|
|
|
|
echo "$cpu_label $cpu_percent"
|
|
|
|
|
fi
|
|
|
|
|
sleep "$RATE"
|
2022-08-09 06:28:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main
|