2020-06-01 08:10:10 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-10-17 00:38:29 +02:00
|
|
|
# setting the locale, some users have issues with different locales, this forces the correct one
|
|
|
|
export LC_ALL=en_US.UTF-8
|
2020-06-01 08:10:10 +02:00
|
|
|
|
2021-07-06 11:21:21 +02:00
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source $current_dir/utils.sh
|
2021-03-27 19:41:07 +01:00
|
|
|
|
2020-06-01 08:10:10 +02:00
|
|
|
get_percent()
|
|
|
|
{
|
2021-07-06 10:22:36 +02:00
|
|
|
case $(uname -s) in
|
|
|
|
Linux)
|
2021-10-15 10:56:54 +02:00
|
|
|
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"%"}')
|
2021-07-06 10:22:36 +02:00
|
|
|
normalize_percent_len $percent
|
|
|
|
;;
|
2020-06-01 08:10:10 +02:00
|
|
|
|
2021-07-06 10:22:36 +02:00
|
|
|
Darwin)
|
|
|
|
cpuvalue=$(ps -A -o %cpu | awk -F. '{s+=$1} END {print s}')
|
|
|
|
cpucores=$(sysctl -n hw.logicalcpu)
|
|
|
|
cpuusage=$(( cpuvalue / cpucores ))
|
|
|
|
percent="$cpuusage%"
|
|
|
|
normalize_percent_len $percent
|
|
|
|
;;
|
|
|
|
|
2023-02-10 18:25:03 +01:00
|
|
|
OpenBSD)
|
|
|
|
cpuvalue=$(ps -A -o %cpu | awk -F. '{s+=$1} END {print s}')
|
|
|
|
cpucores=$(sysctl -n hw.ncpuonline)
|
|
|
|
cpuusage=$(( cpuvalue / cpucores ))
|
|
|
|
percent="$cpuusage%"
|
|
|
|
normalize_percent_len $percent
|
|
|
|
;;
|
|
|
|
|
2021-07-06 10:22:36 +02:00
|
|
|
CYGWIN*|MINGW32*|MSYS*|MINGW*)
|
|
|
|
# TODO - windows compatability
|
|
|
|
;;
|
|
|
|
esac
|
2020-06-01 08:10:10 +02:00
|
|
|
}
|
|
|
|
|
2021-12-22 23:11:09 +01:00
|
|
|
get_load() {
|
|
|
|
case $(uname -s) in
|
2023-02-10 18:25:03 +01:00
|
|
|
Linux | Darwin | OpenBSD)
|
2021-12-22 23:11:09 +01:00
|
|
|
loadavg=$(uptime | awk -F'[a-z]:' '{ print $2}' | sed 's/,//g')
|
|
|
|
echo $loadavg
|
|
|
|
;;
|
|
|
|
|
|
|
|
CYGWIN* | MINGW32* | MSYS* | MINGW*)
|
|
|
|
# TODO - windows compatability
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
main() {
|
2021-07-06 10:22:36 +02:00
|
|
|
# storing the refresh rate in the variable RATE, default is 5
|
2023-12-21 03:32:56 +01:00
|
|
|
RATE=$(get_tmux_option "@kanagawa-refresh-rate" 5)
|
|
|
|
cpu_load=$(get_tmux_option "@kanagawa-cpu-display-load" false)
|
|
|
|
cpu_label=$(get_tmux_option "@kanagawa-cpu-usage-label" "CPU")
|
2021-12-22 23:11:09 +01:00
|
|
|
if [ "$cpu_load" = true ]; then
|
2022-08-31 14:12:26 +02:00
|
|
|
echo "$cpu_label $(get_load)"
|
2021-12-22 23:11:09 +01:00
|
|
|
else
|
|
|
|
cpu_percent=$(get_percent)
|
|
|
|
echo "$cpu_label $cpu_percent"
|
|
|
|
fi
|
2021-07-06 10:22:36 +02:00
|
|
|
sleep $RATE
|
2020-06-01 08:10:10 +02:00
|
|
|
}
|
2020-06-04 04:58:26 +02:00
|
|
|
|
|
|
|
# run main driver
|
2020-06-01 08:10:10 +02:00
|
|
|
main
|