tree: 1e1e555493cabf40f6844be53946ac658f739ed7
  1. .cirrus.yml
  2. .golangci.yml
  3. auth.go
  4. auth_anonymous.go
  5. auth_default_other.go
  6. auth_default_windows.go
  7. auth_external.go
  8. auth_sha1_windows.go
  9. call.go
  10. conn.go
  11. conn_darwin.go
  12. conn_other.go
  13. conn_unix.go
  14. conn_windows.go
  15. CONTRIBUTING.md
  16. dbus.go
  17. decoder.go
  18. default_handler.go
  19. doc.go
  20. encoder.go
  21. escape.go
  22. export.go
  23. LICENSE
  24. MAINTAINERS
  25. match.go
  26. message.go
  27. object.go
  28. README.md
  29. SECURITY.md
  30. sequence.go
  31. sequential_handler.go
  32. server_interfaces.go
  33. sig.go
  34. transport_darwin.go
  35. transport_generic.go
  36. transport_nonce_tcp.go
  37. transport_tcp.go
  38. transport_unix.go
  39. transport_unixcred_dragonfly.go
  40. transport_unixcred_freebsd.go
  41. transport_unixcred_linux.go
  42. transport_unixcred_netbsd.go
  43. transport_unixcred_openbsd.go
  44. transport_zos.go
  45. variant.go
  46. variant_lexer.go
  47. 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.20 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 pkg.go.dev. 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.
  • rpic lightweight web app and RESTful API for managing a Raspberry Pi

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.