https://bugs.kde.org/show_bug.cgi?id=391545
--- Comment #7 from Friedrich W. H. Kossebau <kosse...@kde.org> --- Calling the "Play" method would be done like this: qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 \ org.mpris.MediaPlayer2.Player.Play Spec for Play behaviour is at https://specifications.freedesktop.org/mpris-spec/latest/Player_Interface.html#Method:Play For all the methods you would just use "org.mpris.MediaPlayer2.Player." + method name in the above call. So what you do here is: qdbus service object-in-service method-of-object (args, none here) Getting the "PlaybackStatus" property: qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 \ org.freedesktop.DBus.Properties.Get org.mpris.MediaPlayer2.Player \ PlaybackStatus -- You are receiving this mail because: You are watching all bug changes.