可能重复:
如何更改调整亮度的快捷键?
我的笔记本电脑上的亮度键无法被 Ubuntu 识别,这是各种笔记本电脑的常见问题,有没有办法在 Ubuntu 12.04 中设置任意键快捷键来更改亮度?我在快捷方式选项卡下的键盘设置应用程序中查找,但找不到。
我可以在亮度和锁定设置应用程序中设置亮度,但如果我可以分配一个快捷键(如Ctrl+F2和Ctrl+ ) ,会方便得多F3。
答案1
这是使用键盘设置应用程序在 Ubuntu 12.04 上设置任意亮度调高/调低键的通用方法。
sudo apt-get install xdotool
打开“键盘”设置应用程序,转到快捷方式选项卡,单击自定义快捷方式,然后单击小 + 按钮添加快捷方式。
name: Brightness Up
command: xdotool key XF86MonBrightnessUp
另一个:
name: Brightness Down
command: xdotool key XF86MonBrightnessDown
单击“已禁用”的位置,然后按下所需的组合键,我最终使用了F2和F3。
在 Ubuntu 16.04 中使用 --clearmodifiers 命令,即
name: Brightness Up command: xdotool key --clearmodifiers XF86MonBrightnessUp
和
name: Brightness Down command: xdotool key --clearmodifiers XF86MonBrightnessDown