adam-gui/vendor/github.com/godbus/dbus/v5/conn_unix.go

18 lines
312 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
//+build !windows,!solaris,!darwin
package dbus
import (
"os"
)
const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
func getSystemBusPlatformAddress() string {
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
if address != "" {
return address
}
return defaultSystemBusAddress
}