mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 07:20:00 +00:00
18 lines
312 B
Go
18 lines
312 B
Go
|
//+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
|
||
|
}
|