当前位置: 首页>>技术教程>>正文


重新映射Ubuntu中的“next song”键以使用Spotify和Wine

, , ,

问题描述

我想使用ubuntu中的全局密钥更改Spotify中的歌曲。在Windows上,可以使用键盘上的特殊键“下一首歌曲键”(?)

如何重新映射ubuntu中的键(此处没有”next song”按钮)以用作”next song”按钮?例如“ Ctrl +右键”。

我将如何与通过葡萄酒运行的Spotify配合使用呢?

基本上我想知道”next song”按钮的ascii代码是什么,以及如何将其映射到ubuntu下的按键组合。希望它可以毫无问题地通过葡萄酒传递此命令。

编辑:我在ubuntu机器上没有”next song”按钮。

最佳方法

或jbonney使用dbus-send here on his gist找到了一个非常简洁的解决方案

或者,如果您急于:

"dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause" XF86AudioPlay
"dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Stop" XF86AudioStop
"dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next" XF86AudioNext
"dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Previous" XF86AudioPrevious

次佳方法

对于Ubuntu,现在有一个“ Spotify for Linux”。为了将键组合映射到”next song”,dconf-editor可能会有所帮助(see here)。一旦完成了对”next song”的映射,John Reese将为媒体密钥集成提供一个不错的Spotify wrapper

编辑:适用于Linux的Spotify现在支持媒体密钥。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/8097.html,未经允许,请勿转载。