tmux2k/scripts/gpu.sh

38 lines
925 B
Bash
Raw Normal View History

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_platform() {
case $(uname -s) in
2022-08-09 06:28:35 +05:30
Linux)
2023-03-29 14:52:27 +05:30
gpu=$(lspci -v | grep VGA | head -n 1 | awk '{print $5}')
echo "$gpu"
;;
2024-03-17 04:00:27 +05:30
Darwin) ;; # TODO - Darwin/Mac compatibility
CYGWIN* | MINGW32* | MSYS* | MINGW*) ;; # TODO - windows compatibility
2023-03-29 14:52:27 +05:30
esac
2022-08-09 06:28:35 +05:30
}
2023-03-29 14:52:27 +05:30
get_gpu() {
gpu=$(get_platform)
if [[ "$gpu" == NVIDIA ]]; then
2023-07-04 17:16:17 +01:00
usage=$(nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits | awk '{ sum += $0 } END { printf("%s%%\n", sum / NR) }')
2023-03-29 14:52:27 +05:30
else
usage='unknown'
fi
2024-03-17 04:00:27 +05:30
normalize_padding "$usage"
2022-08-09 06:28:35 +05:30
}
2023-03-29 14:52:27 +05:30
main() {
RATE=$(get_tmux_option "@tmux2k-refresh-rate" 5)
gpu_label=$(get_tmux_option "@tmux2k-gpu-usage-label" "GPU")
gpu_usage=$(get_gpu)
echo "$gpu_label $gpu_usage"
sleep "$RATE"
2022-08-09 06:28:35 +05:30
}
main