Topic: Volume hot keys on Eee PC
to add fn volume key functionality to your eee pc, add these lines to your rc.xml
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<execute>amixer -q set PCM 10- unmute</execute>
</action>
</keybind>
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<execute>amixer -q set PCM 10+ unmute</execute>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<execute>amixer -q set PCM 0</execute>
</action>
</keybind>
toggle for some reason doesn't work for me, so my mute button just sets volume to 0.
i also added a volume bar to my conky:
${execibar 1 amixer sget PCM,0 |grep "Front Left:"|cut -d "[" -f2|cut -d "%" -f1}