在 Lubuntu 中添加对媒体键(播放、停止、上一个和下一个按钮)的支持

在 Lubuntu 中添加对媒体键(播放、停止、上一个和下一个按钮)的支持

如何在 Lubuntu 中添加对媒体键(播放、停止、上一个和下一个按钮)的支持?解决方案提供于http://wiki.lxde.org/en/LXDE:Questions#What_about_the_Play.2C_Stop.2C_Previous_and_Next_buttons.3F 不管用。

答案1

修改~/.config/openbox/lubuntu-rc.xml(可复制自/etc/xdg/openbox/rc.xml

在元素内部<keyboard>添加以下内容以支持 Clementine(或等效于支持其他音乐播放器):

   <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>

并运行openbox --reconfigure以重新加载配置文件。

基于http://wiki.lxde.org/en/LXDE:Questions#What_about_the_Play.2C_Stop.2C_Previous_and_Next_buttons.3Fhttp://forum.lxde.org/viewtopic.php?f=8&t=1183

答案2

虽然这是一个老问题:这个小工具playerctl可以控制各种播放器,包括 spotify 和 youtube。

看:https://www.addictivetips.com/ubuntu-linux-tips/fix-media-keys-not-working-on-linux/

相关内容