blob: 2fe6658f2091d64f3cedeb7de76dd9f2073c3394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# Module showing GPU load as a changing bar.
case $BLOCK_BUTTON in
2) setsid -f "$TERMINAL" -e gpuwatch ;;
3) notify-send " GPU load module" "The bar represents
GPU load";;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
# id total idle
load=$(nvidia-smi --query-gpu=utilization.memory --format=csv | awk 'FNR == 2 {print $1}')
printf ""
case "$load" in
[0-9]|1[0-9]) printf "▁";;
2[0-9]) printf "▂";;
3[0-9]) printf "▃";;
4[0-9]) printf "▄";;
5[0-9]) printf "▅";;
6[0-9]) printf "▆";;
7[0-9]) printf "▇";;
8[0-9]) printf "█";;
*) printf "█";;
esac
printf "\\n"
|