mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 09:53:13 +00:00
11 lines
256 B
Bash
11 lines
256 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
gpu=$(sudo intel_gpu_frequency --get)
|
||
|
|
||
|
gpu_cur=$(echo "$gpu" | grep cur | awk '{ print $2 }')
|
||
|
gpu_max=$(echo "$gpu" | grep max | awk '{ print $2 }')
|
||
|
|
||
|
gpu_percent=$(echo "$gpu_cur/$gpu_max*100" | bc -l | cut -d "." -f 1)
|
||
|
|
||
|
echo "# $gpu_percent %"
|