From 02005e3f99cea2786f93a88e6ad8873733a26132 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 26 Jun 2017 16:59:19 -0400 Subject: Fix #1252 --- swaybar/tray/dbus.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/swaybar/tray/dbus.c b/swaybar/tray/dbus.c index 333d398e..22531aa6 100644 --- a/swaybar/tray/dbus.c +++ b/swaybar/tray/dbus.c @@ -158,6 +158,12 @@ int dbus_init() { dbus_error_init(&error); conn = dbus_bus_get(DBUS_BUS_SESSION, &error); + if (conn == NULL) { + sway_log(L_INFO, "Compiled with dbus support, but unable to connect to dbus"); + sway_log(L_INFO, "swaybar will be unable to display tray icons."); + return -1; + } + dbus_connection_set_exit_on_disconnect(conn, FALSE); if (dbus_error_is_set(&error)) { sway_log(L_ERROR, "Cannot get bus connection: %s\n", error.message); -- cgit v1.2.3-54-g00ecf