mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
11 lines
307 B
Bash
11 lines
307 B
Bash
|
#!/bin/dash
|
||
|
#sudo cat /sys/kernel/debug/dri/0/amdgpu_pm_info
|
||
|
|
||
|
|
||
|
if [ "$1" = "--watch" ]; then
|
||
|
sudo watch --no-title -n 0.5 "cat /sys/kernel/debug/dri/0/amdgpu_pm_info | grep -A 10 'GFX Clocks and Power'"
|
||
|
else
|
||
|
sudo cat /sys/kernel/debug/dri/0/amdgpu_pm_info \
|
||
|
| sed -n 's/^GPU Load: \(.*\)$/\1/gp'
|
||
|
fi
|