亮度热键在我的硬件上无法正常工作

亮度热键在我的硬件上无法正常工作

我有一台 System 76 Gazelle Pro 笔记本。

声音热键可以正常工作,但亮度热键不起作用。当我按 Fn+F8 时,它会显示有关亮度降低的 ubuntu 通知,但实际亮度(实际光量)不会降低。对于 Fn+F9(亮度增加),通知会出现,但不会增加,实际亮度也不会升高)。

通过阅读,我得到了一些信息,但不知道该做什么。

谢谢 !

答案1

使用终端并输入“xrandr”

xrandr
Screen 0: minimum 320 x 200, current 1440 x 900, maximum 8192 x 8192
LVDS1 connected (normal left inverted right x axis y axis)
   1366x768       60.0 +
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 connected 1440x900+0+0 (normal left inverted right x axis y axis) 410mm x 260mm
   1440x900       59.9*+   75.0  
   1280x1024      75.0     60.0  
   1280x960       60.0  
   1152x864       75.0  
   1024x768       85.0     75.1     70.1     60.0  
   832x624        74.6  
   800x600        85.1     72.2     75.0     60.3     56.2  
   640x480        85.0     72.8     75.0     66.7     60.0  
   720x400        70.1  
DP1 disconnected (normal left inverted right x axis y axis)

现在看到我的 VGA1 已连接(我有双显示器)所以我们需要改变它的亮度使用:

xrandr --output VGA1 --brightness 0.7 

可以将 0.7 改为除 0 之外的任何值!您还可以将其设为默认启动脚本

更新:亮度控制键重新启用

gksu gedit /etc/default/grub

然后改变

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
GRUB_CMDLINE_LINUX="acpi_osi=Linux"

然后保存并运行:

sudo update-grub 

然后重新启动系统以使更改生效。

相关内容