Is there a graphical tool or maybe a command-line one that lists all the messages and parameters/arguments that I can send to a DBUS-enabled program?? I really want to try scripting some DBUS things but I can hardly find any documentation for the DBUS capabilities of most applications.
Asked
Active
Viewed 4.8k times
6 Answers
22
DBUS Message/Signal Viewer Tools
7
I've been using dbus-monitor, which is really useful. It provides a --profile mode, which provides a quick summary of all the signals bouncing around.
Erigami
- 4,536
7
For Kubuntu users, KDE ships with qdbusviewer-qt4, which can list all available commands to all dbus clients.

Sparhawk
- 6,969
3
D-Feet is no longer maintained. D-Feet themselves suggest to use D-Spy (also spelled d-spy).
- GUI-based D-Spy can be used to discover all available D-Bus bus names, interfaces, signals and methods, as well as execute methods and query for properties.
- Installation via flatpak:
flatpak install flathub org.gnome.dspy
- Installation via flatpak:
- GUI-based Bustle can be used to capture/record ongoing D-Bus activity, including method invocations and emitted signals. After recording, the activity is presented as a sequence diagram.
- Installation via flatpak:
flatpak install flathub org.freedesktop.Bustle
- Installation via flatpak:
Abdull
- 734