Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 dbus-send 或其他东西从命令行发出 dbus 信号?
您可以使用该实用程序dbus-send从命令行发送 D-Bus 请求。
dbus-send
dbus-send --system --type=signal / com.example.signal_name
或者如果你想用信号发送一些数据
dbus-send --system --type=signal / com.example.signal_name string:"hello"
您也可以使用qdbus。这里有一个不错的教程。