Sway clients: Exit gracefully when compositor is unavailable
This commit is contained in:
parent
a59fa9d1b6
commit
529f5ce2e4
6
main.c
6
main.c
@ -908,7 +908,11 @@ int main(int argc, char **argv) {
|
||||
wl_list_init(&state.surfaces);
|
||||
state.xkb.context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||
state.display = wl_display_connect(NULL);
|
||||
assert(state.display);
|
||||
if (!state.display) {
|
||||
sway_abort("Unable to connect to the compositor. "
|
||||
"If your compositor is running, check or set the "
|
||||
"WAYLAND_DISPLAY environment variable.");
|
||||
}
|
||||
|
||||
struct wl_registry *registry = wl_display_get_registry(state.display);
|
||||
wl_registry_add_listener(registry, ®istry_listener, &state);
|
||||
|
Loading…
Reference in New Issue
Block a user