当我按下键盘上的调高音量、调低音量和静音按钮时,什么都没发生。首选项中键盘下的快捷键选项可以识别这些按钮,并且 org.gnome.plugins.media-keys 具有正确的参数,即 XF86AudioRaiseVolume 等,并且它们已恢复为默认值。我正在使用
unity/xenial,现在为 7.4.0+16.04.20160415-0ubuntu1 amd64
在 Dell Inspiron N4110 笔记本电脑上,我使用的是 Cairo-Dock。我尝试过以下解决方案 音量按钮在 14.04 中不起作用 无济于事。
答案1
我已经用这个解决了类似的问题https://ubuntuforums.org/showthread.php?t=2351990:
amixer set Master 1+
amixer set Master 1-
amixer -D pulse set Master toggle
剩下的就是将命令与按键绑定。就我而言,使用 OpenBox,我使用了以下内容.config/openbox/rc.xml
:
<keyboard>
...
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer set Master 1+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer set Master 1-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse set Master toggle</command>
</action>
</keybind>
</keyboard>