1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-28 17:17:50 +00:00
Dotfiles/.config/polybar/themes/monolit-dracula/polybar-scripts/system-gpu-intel/system-gpu-intel.sh
2020-09-05 14:43:37 +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 %"