How do you deal with function keyboard and with keys:
XF86AudioPlay
XF86AudioPause
XF86AudioPrev
XF86AudioNext
in awesome wm? I've made shortcuts to raise/lower/mute using the volume buttons in rc.lua
awful.key({ }, "XF86AudioRaiseVolume", function ()
awful.util.spawn("amixer set Master 9%+", false) end),
awful.key({ }, "XF86AudioLowerVolume", function ()
awful.util.spawn("amixer set Master 9%-", false) end),
awful.key({ }, "XF86AudioMute", function ()
awful.util.spawn("amixer set Master toggle", false) end),
I don't have any idea how to the same with Next/Prev/Play buttons. How do you deal with it? I want to use these keys for banshee/spotify.