A change queued up last week by AMDGPU driver maintainer Alex Deucher will now default to the fullscreen 3D workload profile for discrete GPUs. AMD APUs with integrated graphics will continue to use the default “bootup” power profile but discrete graphics cards will be running in the “fullscreen 3D” power profile by default.
cat `find /sys -name pp_power_profile_mode`
Why doesn’t it search /sys/class/drm? Doesn’t follow symlinks?
It’s
find -L
if you want it to follow symlinks.I feel like find is needlessly convoluted