tree: 5b96cfedf87386f4f98dee48660c27bb45324b14 [path history] [tgz]
  1. auth.go
  2. auth_anonymous.go
  3. auth_external.go
  4. auth_sha1.go
  5. call.go
  6. conn.go
  7. conn_darwin.go
  8. conn_other.go
  9. conn_unix.go
  10. conn_windows.go
  11. CONTRIBUTING.md
  12. dbus.go
  13. decoder.go
  14. default_handler.go
  15. doc.go
  16. encoder.go
  17. escape.go
  18. export.go
  19. homedir.go
  20. LICENSE
  21. MAINTAINERS
  22. match.go
  23. message.go
  24. object.go
  25. README.md
  26. sequence.go
  27. sequential_handler.go
  28. server_interfaces.go
  29. sig.go
  30. transport_darwin.go
  31. transport_generic.go
  32. transport_nonce_tcp.go
  33. transport_tcp.go
  34. transport_unix.go
  35. transport_unixcred_dragonfly.go
  36. transport_unixcred_freebsd.go
  37. transport_unixcred_linux.go
  38. transport_unixcred_netbsd.go
  39. transport_unixcred_openbsd.go
  40. transport_zos.go
  41. variant.go
  42. variant_lexer.go
  43. variant_parser.go
vendor/github.com/godbus/dbus/v5/README.md

Build Status

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.12 or later. It can be installed by running the command below:

go get github.com/godbus/dbus/v5

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • fyne a cross platform GUI in Go inspired by Material Design.
  • fynedesk a full desktop environment for Linux/Unix using Fyne.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • iwd go bindings for the internet wireless daemon “iwd”.
  • notify provides desktop notifications over dbus into a library.
  • playerbm a bookmark utility for media players.

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.