web-dev-qa-db-ja.com

gnomeお気に入りのコンテキストメニューを介したSpotifyコントロール(次、前など)

SpotifyランチャーをGnome Shell Dashに追加したので、今ではお気に入りのアプリになっています。
next/prev/play-pause/stopコマンドをSpotifyコンテキストメニューに追加するにはどうすればよいですか?


それでもこれが不明確だと思う人のために、ここでの目標は次のようなものを持つことです:

enter image description here

6

しばらく時間をかけて答えを探した後、ようやくうまくいくようになりました。

spotify.desktopの下の/usr/share/applicationsファイルを編集するだけです

enter image description here

[Desktop Entry]
Name=Spotify
GenericName=Music Player
Comment=Spotify streaming music client
Icon=spotify-client
Exec=spotify %U
TryExec=spotify
Terminal=false
Type=Application
Categories=Audio;Music;Player;AudioVideo;
MimeType=x-scheme-handler/spotify;

Actions=PlayPause;Next;Previous;Stop

[Desktop Action PlayPause]
Name=Play-Pause
Exec=dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause

[Desktop Action Next]
Name=Next
Exec=dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next

[Desktop Action Previous]
Name=Previous
Exec=dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Previous

[Desktop Action Stop]
Name=Stop
Exec=dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Stop
7