Comment peut-on ajouter un support pour les touches multimédias (boutons lecture, arrêt, précédent et suivant) dans Lubuntu? La solution fournie à http://wiki.lxde.org/fr/LXDE:Questions#What_about_the_Play.2C_Stop.2C_Previous_and_Next_buttons.3F ne fonctionne pas.
Modifier ~/.config/openbox/lubuntu-rc.xml
(il peut être copié de /etc/xdg/openbox/rc.xml
)
Dans l'élément <keyboard>
, ajoutez les éléments suivants pour prendre en charge Clementine (ou un équivalent pour prendre en charge d'autres lecteurs de musique):
<keybind key="XF86AudioPlay">
<action name="Execute">
<command>clementine --play-pause</command>
</action>
</keybind>
<keybind key="XF86AudioStop">
<action name="Execute">
<command>clementine --stop</command>
</action>
</keybind>
<keybind key="XF86AudioNext">
<action name="Execute">
<command>clementine --next</command>
</action>
</keybind>
<keybind key="XF86AudioPrev">
<action name="Execute">
<command>clementine --previous</command>
</action>
</keybind>
et exécutez openbox --reconfigure
pour recharger les fichiers de configuration.
basé sur http://wiki.lxde.org/en/LXDE:Questions#What_about_the_Play.2C_Stop.2C_Previous_and_Next_buttons.3F et http://forum.lxde.org/viewtopic.php ? f = 8 & t = 118