...

Text file src/github.com/godbus/dbus/v5/README.md

Documentation: github.com/godbus/dbus/v5

     1![Build Status](https://github.com/godbus/dbus/workflows/Go/badge.svg)
     2
     3dbus
     4----
     5
     6dbus is a simple library that implements native Go client bindings for the
     7D-Bus message bus system.
     8
     9### Features
    10
    11* Complete native implementation of the D-Bus message protocol
    12* Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
    13* Subpackages that help with the introspection / property interfaces
    14
    15### Installation
    16
    17This packages requires Go 1.12 or later. It can be installed by running the command below:
    18
    19```
    20go get github.com/godbus/dbus/v5
    21```
    22
    23### Usage
    24
    25The complete package documentation and some simple examples are available at
    26[godoc.org](http://godoc.org/github.com/godbus/dbus). Also, the
    27[_examples](https://github.com/godbus/dbus/tree/master/_examples) directory
    28gives a short overview over the basic usage. 
    29
    30#### Projects using godbus
    31- [fyne](https://github.com/fyne-io/fyne) a cross platform GUI in Go inspired by Material Design.
    32- [fynedesk](https://github.com/fyne-io/fynedesk) a full desktop environment for Linux/Unix using Fyne.
    33- [go-bluetooth](https://github.com/muka/go-bluetooth) provides a bluetooth client over bluez dbus API.
    34- [iwd](https://github.com/shibumi/iwd) go bindings for the internet wireless daemon "iwd".
    35- [notify](https://github.com/esiqveland/notify) provides desktop notifications over dbus into a library.
    36- [playerbm](https://github.com/altdesktop/playerbm) a bookmark utility for media players.
    37
    38Please note that the API is considered unstable for now and may change without
    39further notice.
    40
    41### License
    42
    43go.dbus is available under the Simplified BSD License; see LICENSE for the full
    44text.
    45
    46Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.

View as plain text