1

I can control the brightness when i'm working on the OS but during startup it always resets to maximum brightness. Can anyone please provide me with a solution so that my past brightness preference is automatically saved for next boot. I'm using Ubuntu 20.04 on Acer swift 3, Ryzen 5 varient

EDIT : Output for sudo lshw -class display

*-display
description: VGA compatible controller product: Renoir vendor: Advanced Micro Devices, Inc. [AMD/ATI] physical id: 0 bus info: pci@0000:03:00.0 version: c3 width: 64 bits clock: 33MHz capabilities: pm pciexpress msi msix vga_controller bus_master cap_list configuration: driver=amdgpu latency=0 resources: irq:47 memory:b0000000-bfffffff memory:c0000000-c01fffff ioport:1000(size=256) memory:c0600000-c067ffff

1 Answers1

0

I had the same problem and this is what I did.

To find current brightness level:

cat /sys/class/backlight/amdgpu_bl0/brightness 

Set the brightness on boot using:

echo 30 > /sys/class/backlight/amdgpu_bl0/brightness 
Sooraj
  • 101