2

Installed rhythmbox and rhythmbox-plugins but there is no org.Rhythmbox in the list of available dbus services. To view the list I use:

dbus-send --system            \
  --dest=org.freedesktop.DBus \
  --type=method_call          \
  --print-reply               \
  /org/freedesktop/DBus       \
  org.freedesktop.DBus.ListNames 
Anthon
  • 78,313
  • 42
  • 165
  • 222
r_spb
  • 53
  • 5

1 Answers1

2

Rhythmbox needs the MPRIS plugin enabled (use the plugins window to enable the plugin)

pic

Modern Rhythmbox versions (2.90.1 and later) exposes a session dbus entry called "org.gnome.Rhythmbox3" when Rhythmbox is actually running. To see this slightly alter your dbus command:

dbus-send --session --dest=org.freedesktop.DBus --type=method_call --print-reply /org/freedesktop/DBus org.freedesktop.DBus.ListNames

Alternatively just use the mpris interface as explained in this excellent Q&A.

If you use the application d-feet then this clearly displays the objects exposed by the mpris interface:

pic

fossfreedom
  • 276
  • 2
  • 8
  • But i use Ubuntu with KDE. I think in dbus list i should see something like org.mpris.MediaPlayer.Rhythmbox. So the question is: How to activate dbus mpris service? Install latest version of DBus? – r_spb Dec 20 '15 at 11:16
  • you shouldnt need to install a newer dbus - I dont use KDE but I understand mpris should be exposed - check using d-feet as explained in the edit. – fossfreedom Dec 20 '15 at 11:26