LinuxCommandLibrary

qdbus

TLDR

List D-Bus services

$ qdbus
copy
List service objects
$ qdbus [org.freedesktop.DBus]
copy
Call method
$ qdbus [service] [object] [method]
copy
Get property
$ qdbus [service] [object] [property]
copy

SYNOPSIS

qdbus [options] [service] [object] [method]

DESCRIPTION

qdbus interacts with D-Bus services. Qt D-Bus tool.
The tool calls methods and properties. Introspects services.
qdbus queries D-Bus.

PARAMETERS

SERVICE

D-Bus service name.
OBJECT
Object path.
METHOD
Method or property.
--system
Use system bus.
--session
Use session bus.
--literal
Print literal reply.

CAVEATS

Qt dependency. For D-Bus interaction.

HISTORY

qdbus is part of Qt for D-Bus interaction.

SEE ALSO

dbus-send(1), gdbus(1)

Copied to clipboard