惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
博客园 - 叶小钗
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
N
Netflix TechBlog - Medium
B
Blog
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理

CachyOS Forum - Latest posts

Ran into a frozen black screen issue with latest update Niri Settings GUI Not Appearing Update to Gnome 50 and I'm getting black/blank screen on NVIDIA with hybrid graphics My JBL Quantum 350 headphones dont play sound 90% of the time on linux while on windows it plays audio 99% of the time Niri/Noctalia Shell notifications Getting a black screen after alt-tabbing too many times Rog-control-center Duplicate keyboard and mouse in system settings? Games running very poorly after first session (semi-solved, still need help though!) Amdgpu random hangs (does cachy perhaps plan to carry patches for this)? A little something. The adj script that replaces GNU fmt for non-ASCII text Mouse scroll wheel issues - ratchet Can't start steam after updates of today (17 April) Balena etcher or ventoy QEMU Bridge setup - Maybe already known but I found it pretty difficult to do and needed much reading Multi-boot install: what do I do about my /boot and /boot/efi partition? Do you collect all the solutions and post them on Wiki or Forum? System update - lts headers invalid or corrupted Sick to death of updates killing my games! I messed up my stuff again and cant download any thing now. error below Got Logitech MX4 with Haptic working in CachyOS Need help with the performance button on my Acer Nitro V16 AI Bailing out, you are at your own Troubles in the Starfield What is so special about the new Linux Kernel 7? "Issue: Display brightness is locked at a low level after waking from sleep on CachyOS (latest update) Balena etcher or ventoy Help with kernel update, emergency mode Issue happening only on wayland Display not recognised - low resolution
Struggling w/ Understanding how to change OLED brightness...
Kevin_Olivares · 2025-12-28 · via CachyOS Forum - Latest posts

1

Sorry, I’m on Day 1 of CachyOS, and everything is swell so far, except for my brightness setting.

I have an ASUS Zephyrus G16 (Intel) w/ an OLED screen, and I downloaded brillo in an attempt to modify my screen brightness. Installation went well, however when I attempted the “Brillo -U 10” command, nothing happened.
I then tried the “sudo brillo -U 10” command and just got a “permission denied” error.

I’m struggling to understand how to allow root permissions as guides/tutorials do not fully explain how to input commands, they just give you basic inputs, and as a Linux noob I’m having trouble understanding the Arch wiki and how to use these inputs/commands.

Some guidance would be very helpful, even a direction to look into would be much appreciated!

If you use GNOME DE, then you can use gdctl to configure the brightness. I use this to set my monitor’s brightness when using HDR. When in the HDR mode, the monitor’s butilt-in settings lock out the brightness controls but gdctl can configure it over the DisplayPort cable.

Edit: gdctl works for configuring the brightness of a laptop display and any external monitors.

brikler 3

you can change the brighness very easy :slight_smile:

it needs to change only one value.

you can find this value in: /sys/class/backlight/intel_backlight/brightness

as root:

echo yourValue > /sys/class/backlight/intel_backlight/brightness

Sorry, I should’ve clarified that I use KDE Plasma, would that work for plasma, too? If so, how would I use that command?

When you say “change by one value” do you mean change the value listed by one digit? When I go to that file location it shows “48001”, do you mean I need to change it to “4800”? I tried changing it to “2400” to see if that would lower my brightness by 50% but it popped up an error. My brightness is maxed out on my laptop and i rarely use it on max brightness, it’s giving me a massive headache at that level.

mattsteg 6

Maybe try the solutions offered here?

More reportsof success here

brikler 7

exact! under normal circumstances it will work in this way

ls /sys/class/backlight/intel_backlight/
actual_brightness device@ scale uevent
bl_power max_brightness subsystem@
brightness power/ type

Retard 8

I’m assuming you have an Nvidia GPU in your laptop and you’re using GRUB. I have an Asus TUF laptop with an Intel CPU and Nvidia GPU and encountered the same issue.

If this is your case too, the problem is that Nvidia is by default set to control the screen brightness, but it doesn’t actually have access to the screen. The integrated Intel GPU handles that. So you need to force the OS to use Intel, not Nvidia, for brightness.

You can check by running this command in terminal:

ls /sys/class/backlight/

If you see:

nvidia_wmi_ec_backlight

then that’s your problem.


Steps to fix

  1. Open GRUB config:
sudo nano /etc/default/grub

  1. Find this line:
GRUB_CMDLINE_LINUX_DEFAULT='nowatchdog nvme_load=YES zswap.enabled=0 splash loglevel=3'

Replace it with:

GRUB_CMDLINE_LINUX_DEFAULT='nowatchdog nvme_load=YES zswap.enabled=0 splash loglevel=3 i915.enable_dpcd_backlight=1 acpi_backlight=native nvidia.NVreg_EnableBacklightHandler=0'

  1. Save the file (in Nano: ^X = Ctrl+X, then Y to confirm, Enter to save).

  2. Regenerate GRUB:

sudo grub-mkconfig -o /boot/grub/grub.cfg

  1. Reboot:
sudo reboot

After restart, your brightness keys and slider should work.


Extra info

  • To paste in terminal or in Nano, use Ctrl+Shift+V instead of usual Ctrl+V.

  • In Nano, ^ means Ctrl, e.g., ^X = Ctrl+X to save.

this stopped working at 7.1.4-1-g14 kernel.