mirror of
https://codeberg.org/postscriptum/gemlog.git
synced 2026-02-18 22:12:40 +00:00
initial commit
This commit is contained in:
commit
259fee630b
127 changed files with 7811 additions and 0 deletions
31
public/en/screen-backlight-correction-on-imac-linux.gmi
Normal file
31
public/en/screen-backlight-correction-on-imac-linux.gmi
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Screen backlight correction on iMac / Linux
|
||||
|
||||
Before, I have changed backlight with:
|
||||
|
||||
``` bash
|
||||
xrandr --output eDP --brightness 0.8
|
||||
```
|
||||
|
||||
But after switching to Debian / i3, found that screen brightness correction works not like before - even the picture less bright, it looks like back or foreground LED ones still turned on max.
|
||||
|
||||
After some time of researching, found new option for my hardware configuration (it was 255 by default):
|
||||
|
||||
``` bash
|
||||
echo 50 > /sys/class/backlight/radeon_bl1/brightness
|
||||
```
|
||||
|
||||
Now picture looks more contrast and colorful, before apply the recipe above, I had changed acpi_backlight to native in
|
||||
|
||||
``` /etc/default/grub
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_backlight=native"
|
||||
```
|
||||
|
||||
then
|
||||
|
||||
``` bash
|
||||
update-grub
|
||||
```
|
||||
|
||||
Some other tips:
|
||||
|
||||
=> https://wiki.archlinux.org/title/Backlight
|
||||
Loading…
Add table
Add a link
Reference in a new issue