Topic: [Solved] Configuring Fn keys for volume up/down and play/pause
Hello,
I'm trying to configure my Fn keys for volume up/down, play/pause and next/previous. I found this somewhere and added it to my rc.xml:
<!-- Keybindings for audio control -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>alsamixer set PCM,0 5%+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>alsamixer set PCM,0 5%-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>alsamixer set iSpeaker,0 toggle</command>
</action>
</keybind>When I press one of the buttons, my volume doesn't go up or down and my CPU goes to 100%. What am I doing wrong? And what are the keybindings for play/pause and next/previous? Thanks in advance!
Last edited by Unia (2010-09-01 15:23:06)