1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-10-06 20:22:52 +00:00
Dotfiles/.config/polybar/polybar-scripts/system-gpu-intel/system-gpu-intel.sh
2020-07-27 07:59:00 +03:00

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 %"